From b7d388a39c89df7b89f1cb292693221c03478411 Mon Sep 17 00:00:00 2001 From: J3vb <192430104+J3vb@users.noreply.github.com> Date: Fri, 28 Aug 2026 06:54:32 +0200 Subject: [PATCH] =?UTF-8?q?release:=20v1.2.0-alpha.4=20=E2=80=94=2062=20fi?= =?UTF-8?q?xes=20plus=20the=20B0/B1=20repository=20foundation=20(#1426)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix 27 findings from 2026-08-21 bug hunt (#1400) * chore(findings): record 2026-08-21 bug hunt (38 findings) * fix(api): 1 defect(s) (OC-0240) * fix(client): 1 defect(s) (OC-0241) * fix(plugin): 2 defect(s) (OC-0243, OC-0265) * fix(client): 3 defect(s) (OC-0244, OC-0256, OC-0259) * fix(client): 1 defect(s) (OC-0247) * fix(client): 2 defect(s) (OC-0248, OC-0258) * fix(identity): 1 defect(s) (OC-0250) * fix(ws): 3 defect(s) (OC-0252, OC-0269, OC-0272) * fix(admin): 1 defect(s) (OC-0253) * fix(client): 1 defect(s) (OC-0254) * fix(voice): 1 defect(s) (OC-0255) * fix(ws): 1 defect(s) (OC-0260) * fix(client): 1 defect(s) (OC-0261) * fix(client): 1 defect(s) (OC-0262) * fix(client): 1 defect(s) (OC-0263) * fix(client): 1 defect(s) (OC-0264) * fix(client): 1 defect(s) (OC-0268) * fix(ws): 1 defect(s) (OC-0273) * fix(service): 1 defect(s) (OC-0275) * style: satisfy golangci-lint and prettier on 2026-08-21 fix commits - drop ineffectual backupDir reset before return (registry.go, OC-0265) - reflow long boolean expression (attachments.ts, OC-0241) * fix(client): 4 defect(s) (OC-0242, OC-0246, OC-0249, OC-0251) * fix(voice): 1 defect(s) (OC-0267) * fix(admin): 1 defect(s) (OC-0274) * fix(voice): 1 defect(s) (OC-0245) * fix(ws): 1 defect(s) (OC-0271) * fix(voice): 2 defect(s) (OC-0239, OC-0257) * fix(ws): 1 defect(s) (OC-0266) * fix(voice): 1 defect(s) (OC-0270) * style: clear golangci-lint modernize and prettier nits from 2026-08-21 fixes - range-over-int and slices.Contains modernizations in new Go test files - prettier reflow in dispatcher.ts * chore(findings): mark 2026-08-21 hunt findings fixed/declined 37 fixed across the fix waves, OC-0238 declined (LiveKit webhook TLS requires a product decision, not a mechanical patch). --------- Co-authored-by: Claude * fix: 35 findings from the 2026-08-22 bug hunt (#1402) * fix(voice): 1 defect(s) (OC-0277) * fix(voice): 1 defect(s) (OC-0278) * fix(client): 1 defect(s) (OC-0280) refreshDmSidebar() rebuilds the entire DM sidebar subtree on every dmStore.channels change - which includes presence flips and new messages, not just DM list changes. The "Find a conversation" filter text and input focus live only in that destroyed subtree, so they were silently wiped mid-typing. Capture and restore both across the destroy+recreate cycle. * fix(ws): 1 defect(s) (OC-0285) * fix(client): 1 defect(s) (OC-0286) * fix(client): 1 defect(s) (OC-0288) Consume the legacy unscoped mute key after migrating it onto the first host, so a brand-new host with no scoped key of its own no longer reads through to the same legacy list and inherits another server's mutes. * fix(voice): 1 defect(s) (OC-0290) * fix(db): 1 defect(s) (OC-0293) DecrementMentionCounts reversed mention_count bumps that were never applied: message_mentions stores every resolved mention id including the author's blockers, while applyMentionCounts excludes blockers before incrementing. Deleting a blocked author's message therefore wiped an unrelated, genuine mention badge on the same read_states row. Mirror the block exclusion in the decrement UPDATE. * fix(db): 1 defect(s) (OC-0294) DeleteAccount soft-deletes the departing user's messages but never reversed the read_states.mention_count bumps those messages made, leaving phantom mention badges. Reverse them inline in the existing transaction, mirroring DecrementMentionCounts' guards. * fix(client): 1 defect(s) (OC-0295) MemberList rebuilt every row on any non-presence-only membersStore change and on every roles_update, but registered each row's click/contextmenu listeners on the component-lifetime disposable.signal, which only aborts at destroy(). Discarded rows therefore stayed reachable (and their listeners live) for the component's whole lifetime. Route per-row listeners through a per-render AbortController that is aborted and replaced at the top of every render, and aborted again in destroy(). * fix(identity): 1 defect(s) (OC-0297) UpdateProfile's post-commit re-read of the user row could fail for reasons unrelated to context cancellation (SQLITE_BUSY, I/O error, pool exhaustion) and was reported as ErrInternal even though UpdateUserProfile had already committed. Callers that treat any UpdateProfile error as proof the write never landed — handleUploadAvatar deletes the file it just stored — would delete a file the committed avatar column now points at, permanently breaking the avatar with no user_update broadcast. Since UpdateUserProfile only writes username/avatar/display_name/about, merge those four onto the pre-write snapshot to reconstruct the committed row without needing the re-read to succeed, and log the read failure. * fix(ws): 2 defect(s) (OC-0298, OC-0299) - OC-0298: applyConnectStatus stamped c.user.Status even when the UpdateUserStatus write failed, so auth_ok and the presence broadcast claimed a status users.status disagreed with, and buildReady's ListMembers read never self-corrected for the session. - OC-0299: refreshUserSnapshot silently fell back to roleName "member" when the new role lookup failed, pinning the session to a fabricated role on the wire. It now fails closed like the sibling lookups in upgradeAndAuth and handleFreshConnect. * fix(client): 1 defect(s) (OC-0300) * fix(client): 1 defect(s) (OC-0301) * fix(ws): 1 defect(s) (OC-0302) * fix(api): 1 defect(s) (OC-0305) handleDiagnosticsConnectivity used clientIP(r), ignoring cfg.Server.TrustedProxies, so behind a configured trusted reverse proxy the endpoint reported the proxy hop instead of the real client address. Use clientIPWithProxies with the parsed trusted-proxy nets, matching RateLimitMiddleware on the same route. * fix(client): 2 defect(s) (OC-0306, OC-0308) * fix(client): 1 defect(s) (OC-0307) QuickSwitcher registered a per-row click listener against the overlay-lifetime AbortSignal, but renderResults() rebuilds every row on each keystroke, arrow key, and store refresh. Discarded rows kept their listeners alive until the overlay closed. Replaced with one delegated click listener on the stable results container, keyed off the data-channelid each row already carries. * fix(client): 1 defect(s) (OC-0310) * fix(server): 3 defect(s) (OC-0279, OC-0291, OC-0292) Reap a soft-deleted message's attachment files, count lapsed temporary bans as active users in the require_2fa enrollment gate, and only apply the 2FA-enrollment precondition when require_2fa itself is being enabled. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01SdkJRbjCtrG76jEnrhKbYo * test(api): sync apiTestSchema with the user_blocks migration DeleteAccount's mention-count reversal joins user_blocks; the api package's hand-rolled schema fixture predates migration 012. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01SdkJRbjCtrG76jEnrhKbYo * fix(client): 3 defect(s) (OC-0281, OC-0282, OC-0296) Decouple the E2EE identity-mismatch modal and right-click popovers from the sidebar's per-render abort signal, and let global drag listeners survive a mid-drag re-render. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01SdkJRbjCtrG76jEnrhKbYo * fix(voice): 2 defect(s) (OC-0283, OC-0287) Retire a departed peer's E2EE key unconditionally on leave, and surface a failed microphone unmute instead of reporting an unmuted state the room never saw. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01SdkJRbjCtrG76jEnrhKbYo * fix(client): 3 defect(s) (OC-0289, OC-0303, OC-0309) Guard the DM call button against redialing the channel already joined, resolve the incoming-call banner's caller through the nickname-aware display name, and keep the DM profile sidebar subscribed to live member/status updates. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01SdkJRbjCtrG76jEnrhKbYo * style(client): prettier-format the dm-store test Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01SdkJRbjCtrG76jEnrhKbYo * fix(server): 1 defect(s) (OC-0284) Make message soft-delete a compare-and-set so a repeated chat_delete cannot reverse mention counts twice. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01SdkJRbjCtrG76jEnrhKbYo * fix(server): 2 defect(s) (OC-0276, OC-0304) Re-sync a resumed connection's voice E2EE peer keys in registerNow (announce frames are unsequenced and cannot be replayed), and apply the live-connection presence rule to every DM payload DMService builds. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01SdkJRbjCtrG76jEnrhKbYo * chore(ledger): record the 2026-08-21 hunt findings as fixed Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01SdkJRbjCtrG76jEnrhKbYo * chore(ledger): independent revert-proof pass for OC-0276..OC-0310 Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01SdkJRbjCtrG76jEnrhKbYo * refactor(service): extract DeleteMessage authorization into a helper Keeps DeleteMessage under the cyclop complexity ceiling after the OC-0284 guard. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01SdkJRbjCtrG76jEnrhKbYo --------- Co-authored-by: Claude * chore(ledger): record the 38 open findings from the 2026-08-22 hunt (#1403) Claude-Session: https://claude.ai/code/session_01SdkJRbjCtrG76jEnrhKbYo Co-authored-by: Claude * chore(graphify): refresh knowledge graph * fix: close the three B0 P0 gates and record a measured baseline (#1409) * chore(security): stop tracking the private security-finding reports docs/security-findings/ holds detailed reports for defects that are not yet fixed. The directory was untracked but not ignored, so any 'git add .' would have published seven unfixed vulnerability traces to a public repository. Findings are coordinated through private GitHub Security Advisories (docs/security.md); only opaque identifiers and safe status belong in tracked plans. Co-Authored-By: Claude Opus 5 (1M context) * fix(client): repair the two red P0 unit contracts (G-01, G-02) G-02: noise-suppression-restart stubbed MediaStream with vi.fn().mockImplementation(arrow), which is not constructible. Vitest 4 threw 'is not a constructor' at the new MediaStream([inputTrack]) call in noise-suppression.ts before reaching any assertion. Replaced with a real class; the OC-0277 assertions are unchanged. G-01: message-list's OC-0217 guard was inverted, not merely stale. It spied on AbortSignal.prototype.addEventListener and asserted zero abort registrations, but the leak it names registered row listeners via element.addEventListener(..., { signal }) — a path that never calls that prototype method. Measured: the leak produces 0 registrations (test passes), while the OC-0286 fix rotates a per-window AbortSignal.any and produces 5 across 5 distinct signals (test fails). The guard passed on the bug and failed on the fix. It now captures the signal each window's row listeners register against and asserts the invariant its name always claimed: one signal per rendered window, a fresh signal per jump, and every superseded window already aborted with exactly one live. Verified both directions — green on the fix, and 'expected 1 to be 5' with beginRowRender() reverted to rowSignal = ac.signal. Client suite: 5257 passed, 0 failed (was 5255 passed, 2 failed). Co-Authored-By: Claude Opus 5 (1M context) * fix(client): make the Playwright suite terminate The runner finished every test and then never exited, printing no summary — so the failure read as 'tests never finish' when it was 'process never exits'. getActiveResourcesInfo() at hang time showed a live ProcessWrap plus several PipeWrap: the Vite dev server was still running. Playwright's webServer teardown does not kill it here. Measured, full suite each time: npm run dev hangs, tests pass node node_modules/vite/bin/vite.js hangs, tests pass reuseExistingServer: false hangs, tests pass gracefulShutdown SIGTERM/3s hangs, tests pass npx vite exits, 290 of 293 FAIL no webServer (pre-started) exits, 293 pass in 33s npx only appears to fix it: npx exits once Vite is up, Playwright reads that as the server dying and tears the group down mid-run, so later tests get ERR_CONNECTION_REFUSED. globalTeardown now kills the process listening on the dev port, releasing the runner's handle. The webServer command spawns Vite's entry point directly so the listening process is Playwright's own child — via 'npm run dev' the npm process would still hold the handle open. It also reaps servers orphaned by an interrupted run, which reuseExistingServer would otherwise silently adopt. An earlier revision used netstat, which is not on PATH in every shell here; the swallowed ENOENT made the fix look applied while the hang persisted. It now uses PowerShell on Windows and lsof elsewhere, and warns on failure rather than failing silently. npm run test:e2e: exit 0, 293 passed, 37s, reproducible, no orphan listener. playwright.config.prod.ts carried the same npm-wrapper shape. Co-Authored-By: Claude Opus 5 (1M context) * chore(client): align .nvmrc with the Node version CI uses Three versions were in play, not two: .nvmrc said 20, CI pins 24, and the machine the audit was measured on runs 26. A baseline measured against .nvmrc is not the baseline CI produces, which defeats the point of B0. Scoped to .nvmrc only. The full single-source-of-truth work — package engines, contributor docs, release — stays in B1 (RL-17 / C-01). Co-Authored-By: Claude Opus 5 (1M context) * docs(plans): add the beta audit set and the B0 baseline The 2026-08-23 audit set has been sitting untracked: repository-health and repository-layout audits, beta product requirements, requirement traceability, the issue register, and the B0-B10 roadmap. They are the plan of record for beta and belong in the repository. Adds b0-baseline-2026-08-25.md, which supersedes the roadmap's 'current evidence snapshot'. Every row is marked measured or carried, so nothing is inherited silently. It also records three audit claims that did not survive verification: - G-01 was an inverted guard, not a stale assertion — it passed on the bug and failed on the fix. - The Playwright hang matched none of the three hypotheses; the runner could not kill its own dev server. - The golangci-lint toolchain failure is refuted: 19 linters run, 0 issues, verified with -v to rule out the known zero-linters false-green. Adds b0-dev-branch-protection.sh, which records the applied dev branch protection and the reasoning behind each setting. Security detail stays private: the register carries only opaque SEC-* families and safe closure criteria, per the roadmap's public/private handling policy. Co-Authored-By: Claude Opus 5 (1M context) * chore(graphify): refresh the knowledge graph Own commit, per CLAUDE.md — the graph payload does not belong in the diff of the changes that triggered it. Co-Authored-By: Claude Opus 5 (1M context) * docs(plans): add the active-plan index and fix a stale status header (G-04) Planning documents had no recorded state, so a reader could not tell current guidance from shipped history. docs/plans/README.md now indexes every plan as active, partially implemented, design-only, or shipped, and names the source of truth for each concern so a defect count is never read out of a plan. Status is recorded in the index rather than by moving or rewriting the historical plans, so links from audits and commit messages keep resolving. One real stale claim found and fixed: audit-2026-08-19-remediation.md still read 'in progress 2026-08-19' while its own phase table showed phases 1-6 done 2026-08-20 (merged 03fcb7d5, PR #1396) with only phase 7 pending. The header had drifted because the table was updated in place and the header was not. No plan was found claiming '0 open findings'. Also records the Step 8 staleness pass in the B0 baseline: all 38 open OC records still resolve to a live file:line at this commit, so none is superseded by later work. Adjudicating them individually is bughunt-fix work, not B0. Co-Authored-By: Claude Opus 5 (1M context) * Update graph output files and manifest with new metadata - Updated graph.html and graph.json with new binary data. - Modified manifest.json to reflect changes in file modification times and AST hashes for several documents. - Added new entry for README.md in the manifest with its corresponding metadata. * docs(plans): close the Docker and coverage leftovers in the B0 baseline Docker smoke: measured and passing. Image builds at 50.1 MB and boots on :8443 with TLS; docker-smoke.sh exits 0. Server coverage: re-measured at 74.6% aggregate, confirming the figure carried from the audit rather than continuing to inherit it. Two findings from doing it: ENV-03 — docker-smoke.sh cannot be run from Git Bash on Windows. MSYS path conversion rewrites the container-internal /chatserver into 'C:/Program Files/Git/chatserver', so docker exec fails 127 and the script reports 'container never reported healthy within 30s' — indistinguishable from a real boot regression. MSYS_NO_PATHCONV=1 makes the same script pass. CI is Linux and unaffected, but Windows is an official contributor platform (RL-20). The CI Docker job is gated on main, so it is skipped for any PR targeting dev — a dev-targeted change cannot get Docker evidence from CI at all. Co-Authored-By: Claude Opus 5 (1M context) * chore(graphify): refresh the knowledge graph Co-Authored-By: Claude Opus 5 (1M context) --------- Co-authored-by: Claude Opus 5 (1M context) * docs(plans): B1 execution plan, and accept HP-0 (#1410) * docs(plans): add the B1 repository-foundation execution plan B1 is the isolated layout/contributor phase. This records the execution order, the proof for each step, and what is out of scope. Two findings worth surfacing before any B1 work starts: - HP-0 was never formally accepted. The roadmap's B1 entry gate requires it; no scorecard artifact exists, no commit or document records an acceptance, and the B0 baseline still lists "Step 10: HP-0 sign-off" under "Not yet done in B0". The plan lists the five gaps that closing it requires, including pinning required status checks on dev -- which are still unset, so a dev PR can currently merge red. - Several layout-audit claims do not survive verification against HEAD, matching the B0 pattern. RL-09's "no single command verifies both protocol consumers" is false (make protocol-verify does, and is enforced in CI, the pre-commit hook, and a contract test). RL-10's test-discovery side effect never fires (no _test.go in Server/scripts). RL-06's regeneration concern is refuted locally. RL-08 grows a toolchain constraint instead. RL-05, RL-07, RL-20 and RL-21 are each worse than written -- RL-20 includes a live bug where a missing `make` is reported as stale protocol constants. The riskiest item, RL-01 (flatten Client/tauri-client into Client), gets a full reference inventory and a mechanical proof for both commits: tree- object equality for the pure move, and scripted-substitution replay for the path rewrite. Release asset names and updater contracts are verified independent of the directory name, so the move cannot rename an artifact. Co-Authored-By: Claude Opus 5 (1M context) * docs(plans): correct the B1 status-check pin list from a live dev PR The list was derived from ci.yml. Observing PR #1410's actual checks found three that exist in no workflow file -- Analyze (go), Analyze (javascript-typescript), Analyze (actions) -- because CodeQL runs from GitHub default setup, configured in repository settings. Reading .github/ alone misses them. Also confirms the two negative predictions against a real dev-targeted PR: Server Docker Build (verify) reports as "skipping", and Tauri Full Build never appears in the check list at all. Neither may be pinned. Co-Authored-By: Claude Opus 5 (1M context) * docs(plans): accept HP-0 and pin the dev required status checks Closes B1's entry gate. All five B1-0 items are done. The scorecard is the artifact the hold point asks for: one place that answers its four questions, records what was accepted as a stated limitation rather than claimed green, and part-closes R-08. Required status checks are now pinned on dev -- ten of them. That was B0's one outstanding step. Two things came out of doing it: - The names cannot be inferred from ci.yml. Three of the ten (the Analyze jobs) exist in no workflow file, because CodeQL runs from GitHub default setup configured in repository settings. They were read off a live dev-targeted PR with `gh pr checks`. - Server Docker Build, Tauri Full Build and the CodeQL aggregate are deliberately excluded. The first two report "skipping" on a dev PR -- Tauri Full Build under its unexpanded matrix name, since the job is skipped before matrix expansion. Admin Panel E2E is excluded because continue-on-error makes it report success unconditionally. Two prior claims are corrected rather than left to propagate: - b0-dev-branch-protection.sh was written assuming repository-settings writes are blocked from the agent sandbox. They are not; the PUT succeeded. The script stays as the record of intent and the way to re-apply or undo. - An earlier revision of the B1 plan said Tauri Full Build does not appear in a dev PR's check list at all. It does, as skipping. Evidence closed out: - Rust is no longer a carried row. Re-measured: 115 passed, cargo clippy --all-targets -- -D warnings at exit 0, confirming the carried figure. - The 38 open ledger records are accepted as counted, non-stale and assigned: 11 medium / 27 low, zero high or critical, zero dead paths across all 348 re-verified at this commit, and none assigned to B1. - The private security review is reconciled: 7 findings, 7 of 7 mapped to existing public rows, 0 unmapped. Summary is content-free; the detail stays in the untracked private reports. Co-Authored-By: Claude Opus 5 (1M context) --------- Co-authored-by: Claude Opus 5 (1M context) * refactor: flatten Client/tauri-client into Client (B1-1) (#1411) * refactor: move Client/tauri-client to Client (pure move, no content change) * refactor: re-point paths after the Client flatten (mechanical, no behaviour change) --------- Co-authored-by: Claude * B1-2: truth, entry points, and contributor path (#1412) * fix(hooks): guard on the command the hook actually runs pre-commit probed one binary and invoked another. The protocol block guarded on `command -v go` and then ran `make protocol-verify`; the sqlc block guarded on `command -v sqlc` and ran `make sqlc-verify`. `make` is not on PATH on a stock Windows box, so a contributor with Go installed but no make had their commit rejected with pre-commit: FAIL: protocol constants are stale — run 'make protocol-generate' in Server/ and stage the result when nothing had been generated and nothing compared. The real cause was `make: not found`, and the advice the message gives fails the same way. Rather than add a `command -v make` guard, inline what the two Makefile targets reduce to — `sqlc generate` / `go run ./scripts/genprotocol` followed by `git diff --exit-code`. Same semantics, one less prerequisite, and it doubles as the make-free equivalent B1-2 asks for. The Makefile targets stay for anyone who prefers them. Also: the protocol block was the only one with no `else`, so a contributor without Go got no check and no notice. It now warns like its two siblings. And gofmt is a separate binary from go, so it is probed separately. Verified both directions with the hook body replayed verbatim: - Go present, make absent -> passes, no staleness claimed. - schema edited without regenerating -> fails, as it must. Refs RL-20 / L-14. * docs: state one branch and PR model Active documents contradicted each other head-on. README.md and docs/contributing.md said branch from `dev` and target `dev`; CLAUDE.md said branch from `main`, PR to `main`. That is R-02, and the 2026-08-19 audit had already recorded it as D-06 without it being resolved. `dev` is the answer, and the repository already behaves that way: B0 made `dev` PR-only with ten required checks enforced on admins, and #1409, #1410 and #1411 all landed there. `main` carries releases. docs/contributing.md becomes the single source of truth. It now states the model, what protection is actually applied, and the two consequences a contributor meets on their first PR — that a self-mergeable PR still cannot merge red, and that Docker and Tauri Full Build report as skipped against `dev` rather than failing. Everywhere else summarises and links here. - CLAUDE.md: corrected, with a link rather than a second copy. - CONTRIBUTING.md: new. GitHub's contributing-guidelines affordance only resolves the root, .github/ or docs/ — `docs/contributing.md` is not a path it finds, so the link never appeared on issues or PRs. - PULL_REQUEST_TEMPLATE.md: names the base branch, which it did not. - bughunt-run skill: reviewed the branch against `origin/main`, which is the wrong base once every PR targets `dev`. README.md already said `dev` and is left as the short summary it should be. Dated audits and the historical remediation plan keep their `main`-era wording — they are records. Refs R-02. * fix(hooks): pick the pre-push base from the nearest integration branch pre-push decided which side's gates to run from `git diff --name-only origin/main...HEAD`. That was right when everything targeted `main`. Once `dev` became the integration branch it stopped being right: a branch cut from `dev` diffed against `main` counts everything on `dev` and not yet on `main` as "changed". Measured on this branch: the old base reported 609 changed files, the new one reports 6. So in practice the hook was running the full server build matrix and the client typecheck plus eslint on every push, whatever the change touched — the file-based narrowing it exists for never engaged. Now it picks whichever of origin/dev, origin/main is nearest, by commits between merge-base and HEAD, skipping a candidate that scores 0. Verified: a branch cut from dev picks origin/dev (2 ahead); dev itself scores 0 against dev and picks origin/main (8 ahead), which is what a dev -> main release PR wants. With no candidate resolvable it falls back to the existing `__all__`, so an unfetched or shallow clone still runs everything. Refs RL-20 / L-14, R-02. * chore(node): one Node source of truth `.nvmrc` and all ten `actions/setup-node` pins said 24; five active documents and the repo's only `engines` block still said 20. A contributor following the docs installed a version CI does not run. Node 24 wins — it is what CI already runs. Every manifest now declares `engines`, and `engine-strict=true` turns a wrong major into a failed install rather than an `EBADENGINE` warning nobody reads. `>=24` rather than `^24` so a Node 26 box keeps working; `Client/.nvmrc` stays the human-facing pin and the docs point at it instead of restating a number. The `.npmrc` is per package root, not one at the top. npm reads the project `.npmrc` from the package directory and does not walk parents — verified with a throwaway package requiring node >=99: with only a parent `.npmrc` npm warned and exited 0; with one in the package directory it failed `notsup`. A single root file would have left `Client/`, the package that matters most, on warnings. Five docs, not the four previously identified — `docs/mcp-introspect.md` also said 20. And `docs/contributing.md` claimed "`.nvmrc` + CI both say Node 20", which was wrong about both. Verified both directions in all three package roots: Node 22 fails `notsup`; Node 24 installs clean and `npm ci` passes in Client/. Refs RL-17 / C-01, ENV-01. * docs: add the documentation landing page `docs/` had 24 top-level files and no index. The root README carried a flat list of 22 links that had drifted: six documents were reachable from nowhere at all — including both 2026-08-23 audits and the test audit — and two entries were labelled "latest" while newer unlinked audits existed. docs/README.md is the index RL-12 asked for. It groups by what a document *is*, because that is what decides whether to trust it: guidance tells you how to do something, reference describes a contract the code implements, audits are dated snapshots nobody updates, plans record intent. Every tracked file under docs/ now appears exactly once, and the audit table says plainly that audit-2026-08-19.md still claims "0 open findings" when the ledger has 38. The root README keeps a short curated list and defers to the index, rather than maintaining a second copy that drifts again. Two fixes while there: `docs/plans/` was linked as a bare directory, unlike its two sibling directory entries, and was annotated "each carries a verified status header" — which docs/plans/README.md:7-9 explicitly contradicts, since a plan's header is exactly the thing that drifts and the index is the authority. Verified: 78 relative links across the new and edited files resolve, and no tracked docs/ file is unreachable from the index. Refs RL-12 / R-06. * feat(scripts): root command facade Entry points existed only inside Server/ (a Makefile) and Client/ (npm scripts). Nothing at the root told a new contributor where to start, and the root package.json had three scripts, none of which built or tested anything. `npm run check` from the root now runs what CI gates on, and check:server / check:client / check:rust run one stack. scripts/run.mjs is dependency-free Node — the shape render-ledger.mjs already uses — so `npm run check` works before `npm install` has. Cross-platform by construction: every step is spawned with an explicit cwd and no shell, so there is nothing to quote and no `cd &&` to behave differently on Windows. npm and npx get their .cmd suffix there. No step shells out to make. The facade orchestrates; it is not a new required path. Each step prints the command and the directory before running it, and those are exactly the commands documented per-stack — so a server contributor can read the output and type them instead, and still never needs Node. Tools CI installs but a contributor may not have (golangci-lint, which has no wrapper in this repo at all; sqlc, pinned by Server/sqlc.version) are skipped with a printed reason rather than failing. Three corrections to the ci-check skill while aligning it: - `make sqlc-verify protocol-verify` replaced by what those targets reduce to, so the documented path does not require make either. - `cargo test` -> `cargo test --lib`, which is what ci.yml actually runs. - "NODE_OPTIONS=--no-experimental-webstorage is mandatory on Node 22+" was false. tests/setup.ts installs the shim, CI runs Node 24 without the flag, and the suite was measured passing without it — 192 files / 5257 tests, identical to the flagged run. Also documents the third RL-20 problem, which needed no code: core.hooksPath is exclusive, so `npm run hooks:install` silently disables any .git/hooks/post-commit — including the one `graphify hook install` writes, which CLAUDE.md tells agents to install. Nothing warned about that. Verified: check:client 5257/192 green, check:rust 123 tests + clippy green, --list prints every command, and the optional-tool skip path reports rather than fails. Refs RL-04 / L-04, RL-20 / L-14. * feat(ci): fail on a document that contradicts the findings ledger G-04's remaining half. The ledger is the source of truth for defect counts, but nothing stopped a planning document from stating a different number and nothing noticed when one did. `render-ledger.mjs --check` cannot help: it validates the JSON schema and returns before rendering, so it never reads FINDINGS.md and cannot see drift at all — and no workflow ran it anyway. scripts/check-doc-counts.mjs counts ledger statuses and compares them to what an allow-list of active documents claims, failing with file, line, claimed value and actual. Wired into ci.yml as a job with no npm ci, since the script imports nothing outside node:, and into the facade as `npm run check:docs` — first in `check`, so a contradicted count does not wait behind ten minutes of -race. The patterns are narrow on purpose. A first attempt matched any " " and flagged nineteen things, all false: "the 45 open P1 rows" (issue-register rows, not ledger findings), "All 8 findings F1-F8" (a different register), "G-05 **refuted**" (an identifier), `">=20"` and `CGO_ENABLED=0` (not counts at all). A check that cries wolf gets ignored, which is the failure G-04 already describes. So a number is only read as a claim in three shapes that cannot mean anything else: an enumeration of two or more " " pairs, a status table row in a table that totals itself, and " records/findings" where the ledger is named within three lines. Fifteen selftest assertions pin both directions, and the job runs them before it runs the check. It reads findings-ledger.json directly rather than importing render-ledger.mjs for `validate`/`render`: that module ends in a bare top-level `await main()` with no import.meta.main guard, so importing it rewrites FINDINGS.md as a side effect. Dated docs/audit-*.md are reported, never failed — they are snapshots nobody maintains. audit-2026-08-19.md does claim zero open findings against 38 open, so b0-baseline's "No plan was found claiming '0 open findings'" holds for docs/plans/ but not for docs/. Not included: a real FINDINGS.md render-drift check. That is RL-07 and belongs with the generated-artifact work, not here. Verified: 27 claims across 9 documents agree; corrupting one count in docs/plans/README.md fails the check naming that line, for both the status and the total. Refs G-04. --------- Co-authored-by: Claude * chore: remove graphify knowledge graph tooling (#1413) The committed knowledge graph and its PreToolUse hooks were steering every codebase question through `graphify query` before any other tool could run. Serena (gopls + rust-analyzer + tsserver over MCP) answers the same questions from real language servers rather than a generated snapshot that goes stale between rebuilds, so the graph no longer earns the ~20 MB it costs the tree. Removed: - `graphify-out/` untracked (7 files, ~20 MB) and now gitignored - both `graphify hook-guard` PreToolUse hooks from `.claude/settings.json` - the "Knowledge graph (graphify)" section of `CLAUDE.md` - the `graphify-out/**` block from `.gitattributes` and `.gitignore` - the graph-rebuild step from the `bughunt-run` skill, and the graph-edge guidance from the bughunt workflow prompt - the graphify-specific `core.hooksPath` example in `ci-check` and `docs/contributing.md`, keeping the underlying warning in generic form Also deletes the locally installed `post-commit` / `post-checkout` rebuild hooks (untracked, not part of this diff). This does not shrink clone size: the graph blobs stay in published history, which `docs/plans/b1-repository-foundation-2026-08-25.md` explicitly rules out rewriting. It does stop future refreshes from adding more. Dated audit and plan documents keep their graphify references as a historical record of the state they described. Co-authored-by: Claude Opus 5 (1M context) * B1-3: repository hygiene gates (RL-19 / L-13, S-05) (#1414) * chore(format): one Prettier config at the repository root Every formatting rule in this repository lived under Client/ and covered exactly two globs: Client/src/**/*.ts and Client/tests/**/*.ts. Root Markdown, all of docs/, every YAML and JSON, all CSS, the root scripts and tools/mcp-introspect were formatted by nothing. There was no .editorconfig. The obvious fix -- a second Prettier config at the root for "everything else" -- gives two configs and two ignore files that can silently disagree about the same file. So the root takes ownership instead: config, ignore file and gate move up, and Client/ folds in. Client's inline "prettier" block, its .prettierignore, its format/format:check scripts and its now-unused prettier devDependency are all deleted; knip would have failed client-check on that last one. The .prettierrc.json values are lifted byte-for-byte from Client/package.json, which is what keeps the reformat commit free of client TypeScript churn: 87 tracked files need reformatting and not one of them is under Client/src or Client/tests. .prettierignore carries only what .gitignore does not. Prettier 3 reads the root .gitignore by default, so node_modules/, dist/, coverage/, Client/src/generated/ and docs/security-findings/ need no entry. It does NOT read nested .gitignore files, which is why .remember/ is listed explicitly -- 38 untracked per-machine scratch files were otherwise able to turn a shared gate red. graphify-out/ is listed because its seven files are tracked and .graphify_labels.json is signed byte-for-byte by its .sig, so formatting it would silently invalidate the signature. check:hygiene is registered in scripts/run.mjs and folded into check and release:preflight. It deliberately contains no `gofmt -l` step: gofmt -l prints offenders and still exits 0, so it cannot fail a build. Go formatting is enforced separately. shellcheck and actionlint take their file lists from `git ls-files`, never a filesystem glob -- .claude/worktrees/ holds a gitignored pre-flatten copy of the tree with three .sh files a glob would happily lint. This commit leaves the tree non-conformant on purpose. The reformat is the next commit, so the 87-file diff is reviewable separately from the rule that caused it. Not included: editorconfig-checker. .editorconfig is the editor baseline the audit asked for; Prettier, gofmt and rustfmt already fail CI on the same indentation and newline rules, so a fourth tool checking them again is a gate with no failure mode of its own. Verified: `npx prettier --check .` names 87 tracked files and zero untracked ones; the same command listed 38 .remember/ scratch files before the ignore entry and none after. `node scripts/run.mjs --list` resolves check:hygiene to 8 shell targets and 4 workflow targets. Both package.json files parse. Refs RL-19 / L-13, S-05. Co-Authored-By: Claude Opus 5 (1M context) * chore(format): reformat the tree to the repository Prettier rules Mechanical. This commit is `npx prettier --write .` and nothing else -- the rule that caused it landed in the previous commit so this diff can be reviewed as a transformation rather than as 84 files of hunks. 84 tracked files: 54 Markdown, 7 .mjs, 7 JSON, 6 YAML, 4 .js, 3 CSS, 2 TypeScript (the two Playwright configs at Client's root, which the old Client/src + Client/tests globs never covered). No file under Client/src or Client/tests moves, because .prettierrc.json carries Client's former inline values byte-for-byte. Prettier rewrote 87 files, not 84. The three in .github/ISSUE_TEMPLATE/ had CRLF on disk and differ only in line endings, which .gitattributes (`* text=auto eol=lf`) already normalises, so their committed blobs are unchanged. Worth knowing before someone reconciles the two numbers. The largest single diff is .superpowers/findings-ledger.json at 7976 lines rewritten. That is safe to format: nothing writes the ledger programmatically -- render-ledger.mjs reads it and writes only FINDINGS.md -- so no tool will fight Prettier over its style on the next hunt. FINDINGS.md itself is ignored as generated. Verified: `npx prettier --check .` reports "All matched files use Prettier code style", so the pass is both complete and idempotent. All 7 reformatted JSON files were parsed before and after and compared as values: semantically identical, zero content changes. `node .superpowers/render-ledger.mjs --check` still reports 348 valid findings and leaves FINDINGS.md untouched. `node scripts/check-doc-counts.mjs` still passes its selftest and still agrees on 27 claims across 9 watched documents -- table realignment did not break the patterns it matches on. `node scripts/run.mjs --list` still parses. Refs RL-19 / L-13, S-05. Co-Authored-By: Claude Opus 5 (1M context) * chore(lint): enforce Go formatting in the Server linter S-05: repository-wide Go formatting was not a required gate. The only gofmt enforcement anywhere was .githooks/pre-commit, which is opt-in per clone (`npm run hooks:install`), only sees staged files, and warns-and-skips when gofmt is off PATH. The obvious fix -- a `gofmt -l` step in CI -- does not work: `gofmt -l` prints its offenders and still exits 0, so the step passes no matter what it finds. scripts/run.mjs has the same problem, which is why check:hygiene has no Go step either. So gofmt goes where it can actually fail something: Server/.golangci.yml. The file was already `version: "2"` but had no `formatters:` block at all, so the 19 enabled linters ran with zero formatters. In v2 gofmt/gofumpt/goimports moved out of `linters.enable` into their own section with its own exclusions. Adding it there means the gate reports through the Lint step of "Server Build & Test", which is already pinned as required on dev -- no new job and no new pin. Every tracked .go file is under Server/ (551 of them, one go.mod), so Server-scoped is repository-wide here. One file was genuinely misformatted: a one-space struct field alignment in Server/admin/handlers_users_broadcast_test.go, fixed in the same commit because a single line does not need its own reformat commit. Trap worth recording: `gofmt -l .` on a Windows working tree lists every file that has CRLF on disk, because gofmt normalises line endings. That reported 18 offenders here, 17 of them ghosts. The blobs are all LF -- .gitattributes forces `eol=lf` -- so CI never saw them, and the honest test is to run gofmt over `git show HEAD:` rather than the working copy. Doing that across all 551 tracked Go files found exactly the one real offender above. Verified both directions with golangci-lint v2 locally: `golangci-lint run ./...` reports 0 issues on the formatted tree; appending a misformatted function to Server/auth/constants.go produces 2 gofmt findings; appending the same misformatted function to Server/db/dbgen/admin.sql.go produces 0, so the exclusion holds. Both files restored and verified clean afterwards. Refs RL-19 / L-13, S-05. Co-Authored-By: Claude Opus 5 (1M context) * fix(scripts): escape the NUL separator instead of embedding one The `tracked()` helper added earlier in this branch splits `git ls-files -z` output on NUL. The separator was written as a literal NUL byte rather than the two-character JavaScript escape, so scripts/run.mjs became a binary file: `git diff` refused to show it, `grep` reported "Binary file matches" instead of the line, and `* text=auto` in .gitattributes stops normalising line endings for a blob it detects as binary. The code worked -- splitting on a raw NUL and splitting on "\0" are the same operation -- which is exactly why this is worth fixing before it is inherited. A source file that tooling classifies as binary is a file nobody can review. Verified: zero NUL bytes remain, `grep -n "split("` now prints line 50 instead of "Binary file matches", `node scripts/run.mjs --list` still resolves the same 8 shell and 4 workflow targets, and prettier still reports the file clean. * chore(lint): enforce Rust formatting Rust had no formatting gate of any kind: no rustfmt.toml, no `cargo fmt` anywhere in CI, in scripts/run.mjs, in the Makefile or in the git hooks. Clippy was the only Rust gate, and clippy does not check layout. `cargo fmt --all -- --check` now runs in the rust-tests job, ahead of clippy: a formatting failure is cheap to produce and cheap to fix, and there is no reason to spend a clippy pass to surface one. The stable toolchain in that job requested `components: clippy` only, so rustfmt is added there. Only that job. ci.yml has a second, byte-identical `Install Rust` block in tauri-build; it stays clippy-only, because a full desktop build is the wrong place to discover a misplaced brace. No rustfmt.toml. The default profile is the point of a baseline -- a config file here would be a second opinion about style with nothing to say. Client/src-tauri is a single `[package]`, not a workspace, so `--all` is a safeguard against a future member rather than a fan-out today. Verified: `node scripts/run.mjs --list` resolves check:rust to three steps with `cargo fmt --all -- --check` first, `npm run format` now also runs `cargo fmt --all`, and prettier reports ci.yml, run.mjs and the ci-check skill clean. `cargo fmt --all -- --check` currently fails on 13 files -- that is the reformat, and it is the next commit. Refs RL-19 / L-13. Co-Authored-By: Claude Opus 5 (1M context) * chore(format): reformat the Rust crate to rustfmt defaults Mechanical. This commit is `cargo fmt --all` and nothing else; the gate that demands it landed in the previous commit so this diff is reviewable on its own. 13 of the 17 tracked .rs files, +343/-164. The crate had never been formatted, so the changes are the usual first-run set: aligned trailing comments collapsed to single spaces, single-element slice literals folded onto one line, long method chains broken across lines, closure bodies expanded into blocks. Verified: `cargo fmt --all -- --check` is clean, so the pass is complete and idempotent. `cargo clippy --all-targets -- -D warnings` finishes with no warnings, and `cargo test --lib` reports 115 passed / 0 failed -- identical to before the reformat, which is what "mechanical" has to mean for a commit that touches this much of the crate. Refs RL-19 / L-13. Co-Authored-By: Claude Opus 5 (1M context) * fix(scripts): make the root facade actually run on Windows Adding the first gate that a contributor would run from the repository root exposed two bugs in the facade, both of which made it silently wrong on the platform this project is developed on. 1. Every npm and npx step failed. bin() appends `.cmd` on Windows, but Node refuses to spawn a .cmd or .bat with shell:false -- the CVE-2024-27980 mitigation -- and fails with EINVAL and a *null* exit status. run.mjs only special-cased ENOENT, so the result was `FAILED: npx prettier --check . exited null` with nothing to explain it. check:client has three npm steps and has never been able to run here. Fixed by spawning only the npm shims through a shell. They are concatenated into a single command string rather than passed as an args array, because shell:true plus a separate array is deprecated (DEP0190) and prints a warning on every invocation; no argument in this file contains a space. 2. Every optional() step was skipped, always. onPath() shelled out to `where` on Windows, but where.exe lives in C:\WINDOWS\System32, which a Git Bash PATH does not necessarily contain -- on this machine PATH carries System32\Wbem, System32\WindowsPowerShell\v1.0 and System32\OpenSSH but not System32 itself. The probe could not start, `probe.status === 0` was false, and golangci-lint and sqlc reported as "not installed" while installed. Fixed by resolving against PATH and PATHEXT directly. No subprocess, and no dependency on which directories happen to be on PATH. A spawn error other than ENOENT now reports its code instead of surfacing as a null exit status. Verified: before, `node scripts/run.mjs check:hygiene` died with "exited null" and both optional steps printed SKIP with the tools present on PATH. After, the same command runs prettier, shellcheck and actionlint and prints "check:hygiene: passed", with no deprecation warning. `golangci-lint` is detected by the new onPath where the old one missed it. Refs RL-20 / L-14. Co-Authored-By: Claude Opus 5 (1M context) * chore(format): ignore build output that nested gitignores hide Prettier honours the root .gitignore and no other. Every build and scratch directory in this repository is ignored by a *nested* one -- Client/.gitignore, .serena/.gitignore, .superpowers/sdd/.gitignore -- so none of them were excluded from the new repository-wide gate. The effect is not subtle. Running `cargo test` once drops roughly 850 formattable files into Client/src-tauri/target/, and the hygiene gate goes from clean to "Code style issues found in 939 files". CI never sees it, because a fresh checkout has no build output; every contributor sees it on their second command. Mirrors the three nested files rather than inventing a list: dist, coverage, playwright-report, test-results, .vite, src-tauri/target and src-tauri/gen from Client/.gitignore, plus .serena/ and .superpowers/sdd/. node_modules needs no entry -- Prettier ignores it by default. Verified: `npx prettier --check .` reports "All matched files use Prettier code style" with a fully populated Client/src-tauri/target/ present on disk, and still names README.md when a misformatted table is appended to it. Refs RL-19 / L-13. Co-Authored-By: Claude Opus 5 (1M context) * chore(ci): shellcheck, actionlint, and a repository hygiene job The last two gates RL-19 asks for. Neither existed: the shell scripts were never linted, the workflows were never syntax-checked, and .githooks/pre-commit carried hand-written `# shellcheck disable=` directives that nothing had ever read. New `hygiene` job, ubuntu-only and root-scoped, modelled on docs-consistency for the same reason: every gate in it is platform-independent text analysis, and .gitattributes pins eol=lf so a second OS would only re-prove line endings. It runs `npm run check:hygiene` -- the same entry point a contributor runs, not a parallel copy of the commands. shellcheck ships in the runner image. actionlint does not, so it is pinned by version and verified by sha256: an installer script piped from a branch would be the one unverified download in a workflow file that pins every action by commit SHA. Prettier's step moves here from client-check, where it no longer belongs. Both linters found real defects. shellcheck, 3 findings in 8 scripts. Two are SC1125 errors in .githooks/pre-commit: `# shellcheck disable=SC2086 - repo paths contain no spaces` is not a valid directive. Trailing prose makes shellcheck discard the rest of the line, so neither suppression was ever in effect -- and one of the two was written earlier in this same branch, which is a fair demonstration of why the gate is worth having. The prose moves to its own line above. The third is SC2015 in start-server.sh, rewritten as an explicit if. actionlint, 5 findings, all inside `run:` blocks it shellchecks once shellcheck is on PATH. Three SC2015 in load-baseline.yml, rewritten as explicit ifs. Two SC2035 in release.yml, where `sha256sum *` should not become `sha256sum ./*`: the comment four lines above records that ParseChecksumFile exact-matches the last field, so a "./" prefix would strand every deployed server exactly as a "windows/" prefix would. `sha256sum -- *` satisfies the linter and leaves the output bytes identical. Verified all three gates in both directions with shellcheck 0.10.0 and actionlint 1.7.7 on PATH. Passing: `node scripts/run.mjs check:hygiene` prints "check:hygiene: passed" with all three steps run, not skipped. Failing: appending `bait_fn() { cat $1; }` to Server/scripts/voice-test.sh fails on SC2086; changing a runs-on to `ubunt-latest` fails on runner-label; appending a misformatted table to README.md fails prettier. All three files restored and confirmed clean afterwards. actionlint validates the new job in ci.yml itself. Refs RL-19 / L-13, S-05. Co-Authored-By: Claude Opus 5 (1M context) * docs(plans): record B1 progress through B1-3 The header still read "B1-0 is complete; B1-1 is the next step" three merged phases later. A plan that misstates where it is costs a reader the same confusion whether it is stale by one phase or three. B1-0 (#1410), B1-1 (#1411), B1-2 (#1412) and B1-3 (this branch) are done; B1-4, dependency automation, is next. Verified: `node scripts/check-doc-counts.mjs` still agrees on 27 claims across 9 watched documents -- this file is one of them -- and prettier reports it clean. * chore(ci): pin Repository Hygiene as a required check on dev The second half of S-05. Its acceptance criterion is "tree is formatted AND a fast required gate fails future drift" -- a check that runs but is not pinned lets a formatting regression merge, so the gate is not a gate until this lands. The name was read off PR #1414 with `gh pr checks` after the job reported `pass` in 26s, not copied out of ci.yml. That order matters: the B0 script records that three pinned names exist in no workflow file at all, and that a required check which never reports blocks every PR forever. Extends the existing script rather than adding a second one, per the B1 plan. Also records, in the "deliberately NOT pinned" list, that Docs & Ledger Consistency reports and passes on a dev PR yet is unpinned. That reads as an oversight from the 2026-08-25 pass rather than a decision, but it belongs to G-04, so it is documented here and not changed. NOT APPLIED YET. Running this script now would pin a check that PR #1413 cannot report -- its branch predates the hygiene job, so the job does not exist in its workflow file and the check would never arrive. Run it after #1414 merges; #1413 needs a rebase onto dev regardless. Verified: shellcheck clean, the embedded JSON parses, and `check:hygiene` passes with prettier, shellcheck and actionlint all running. Refs S-05, RL-14 / G-03. Co-Authored-By: Claude Opus 5 (1M context) --------- Co-authored-by: Claude Opus 5 (1M context) * B1-4: dependency automation (RL-05 / L-05, RL-18) (#1415) * chore(deps): cover the root and mcp-introspect npm roots The repository has three npm package roots — `/` (changelogen, prettier), `/Client`, and `/tools/mcp-introspect` (@modelcontextprotocol/sdk, zod) — each with its own package-lock.json, and `npm run bootstrap` runs `npm ci` in all three. Dependabot watched exactly one of them. The root's prettier is what the Repository Hygiene gate runs, so the formatting gate's own toolchain was drifting unwatched. The obvious fix is to collapse the three roots into an npm workspace and watch one lockfile. Measured on npm 11.17 / Node 26 rather than assumed, that trade is bad, and it is bad for different reasons than expected. Workspaces do not break the things you would predict: `npm ci` inside `Client/` still exits 0, `npm run - - - -
- - - - - \ No newline at end of file diff --git a/graphify-out/graph.json b/graphify-out/graph.json deleted file mode 100644 index 67374159..00000000 --- a/graphify-out/graph.json +++ /dev/null @@ -1,530588 +0,0 @@ -{ - "directed": false, - "multigraph": false, - "graph": {}, - "nodes": [ - { - "label": "MemberListOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L29", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_memberlistoptions", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "memberlistoptions" - }, - { - "label": "ModerationGates", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L63", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_moderationgates", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "moderationgates" - }, - { - "label": "RoleGroup", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L84", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_rolegroup", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "rolegroup" - }, - { - "label": "TypingIndicatorOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/TypingIndicator.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_typingindicator_typingindicatoroptions", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "typingindicatoroptions" - }, - { - "label": "UserProfilePopupComponent", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/UserProfilePopup.ts", - "source_location": "L51", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_userprofilepopup_userprofilepopupcomponent", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "userprofilepopupcomponent" - }, - { - "label": "CleanupFn", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/disposable.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_disposable_cleanupfn", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "cleanupfn" - }, - { - "label": "Disposable", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/disposable.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_disposable_disposable", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "disposable" - }, - { - "label": "MemberJoinPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L489", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_memberjoinpayload", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "memberjoinpayload" - }, - { - "label": "ReadyMember", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L183", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_readymember", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "readymember" - }, - { - "label": "ReadyRole", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L212", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_readyrole", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "readyrole" - }, - { - "label": "AuthState", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/auth.store.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_auth_store_authstate", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "authstate" - }, - { - "label": "ChannelsState", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/channels.store.ts", - "source_location": "L53", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_channels_store_channelsstate", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "channelsstate" - }, - { - "label": "Member", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/members.store.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_members_store_member", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "member" - }, - { - "label": "MemberProfilePatch", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/members.store.ts", - "source_location": "L131", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_members_store_memberprofilepatch", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "memberprofilepatch" - }, - { - "label": "MembersState", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/members.store.ts", - "source_location": "L27", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_members_store_membersstate", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "membersstate" - }, - { - "label": "MessagesState", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L74", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_messagesstate", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "messagesstate" - }, - { - "label": "UiState", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/ui.store.ts", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_ui_store_uistate", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "uistate" - }, - { - "label": "VoiceState", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L72", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_voicestate", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "voicestate" - }, - { - "label": "CertFirstUseModalOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/CertMismatchModal.ts", - "source_location": "L135", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_certmismatchmodal_certfirstusemodaloptions", - "community": 1, - "community_name": "createElement", - "norm_label": "certfirstusemodaloptions" - }, - { - "label": "CertMismatchModalOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/CertMismatchModal.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_certmismatchmodal_certmismatchmodaloptions", - "community": 1, - "community_name": "createElement", - "norm_label": "certmismatchmodaloptions" - }, - { - "label": "IdentityMismatchModalOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/CertMismatchModal.ts", - "source_location": "L250", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_certmismatchmodal_identitymismatchmodaloptions", - "community": 1, - "community_name": "createElement", - "norm_label": "identitymismatchmodaloptions" - }, - { - "label": "ConnectedOverlayControl", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ConnectedOverlay.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_connectedoverlay_connectedoverlaycontrol", - "community": 1, - "community_name": "createElement", - "norm_label": "connectedoverlaycontrol" - }, - { - "label": "ConnectedOverlayOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ConnectedOverlay.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_connectedoverlay_connectedoverlayoptions", - "community": 1, - "community_name": "createElement", - "norm_label": "connectedoverlayoptions" - }, - { - "label": "CreateChannelModalOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/CreateChannelModal.ts", - "source_location": "L21", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_createchannelmodal_createchannelmodaloptions", - "community": 1, - "community_name": "createElement", - "norm_label": "createchannelmodaloptions" - }, - { - "label": "DeleteChannelModalOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/DeleteChannelModal.ts", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_deletechannelmodal_deletechannelmodaloptions", - "community": 1, - "community_name": "createElement", - "norm_label": "deletechannelmodaloptions" - }, - { - "label": "EditChannelData", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EditChannelModal.ts", - "source_location": "L86", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_editchannelmodal_editchanneldata", - "community": 1, - "community_name": "createElement", - "norm_label": "editchanneldata" - }, - { - "label": "EditChannelModalOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EditChannelModal.ts", - "source_location": "L101", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_editchannelmodal_editchannelmodaloptions", - "community": 1, - "community_name": "createElement", - "norm_label": "editchannelmodaloptions" - }, - { - "label": "IncomingCallBannerOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/IncomingCallBanner.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_incomingcallbanner_incomingcallbanneroptions", - "community": 1, - "community_name": "createElement", - "norm_label": "incomingcallbanneroptions" - }, - { - "label": "InviteItem", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/InviteManager.ts", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_invitemanager_inviteitem", - "community": 1, - "community_name": "createElement", - "norm_label": "inviteitem" - }, - { - "label": "InviteManagerOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/InviteManager.ts", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_invitemanager_invitemanageroptions", - "community": 1, - "community_name": "createElement", - "norm_label": "invitemanageroptions" - }, - { - "label": "PinnedMessage", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/PinnedMessages.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_pinnedmessages_pinnedmessage", - "community": 1, - "community_name": "createElement", - "norm_label": "pinnedmessage" - }, - { - "label": "PinnedMessagesOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/PinnedMessages.ts", - "source_location": "L18", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_pinnedmessages_pinnedmessagesoptions", - "community": 1, - "community_name": "createElement", - "norm_label": "pinnedmessagesoptions" - }, - { - "label": "QuickSwitchOverlayOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/QuickSwitchOverlay.ts", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_quickswitchoverlay_quickswitchoverlayoptions", - "community": 1, - "community_name": "createElement", - "norm_label": "quickswitchoverlayoptions" - }, - { - "label": "ToggleItem", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccessibilityTab.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accessibilitytab_toggleitem", - "community": 1, - "community_name": "createElement", - "norm_label": "toggleitem" - }, - { - "label": "ProfileCardResult", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccountTab.ts", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accounttab_profilecardresult", - "community": 1, - "community_name": "createElement", - "norm_label": "profilecardresult" - }, - { - "label": "CameraInvalidationRegistrar", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/VoiceAudioTab.ts", - "source_location": "L84", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_voiceaudiotab_camerainvalidationregistrar", - "community": 1, - "community_name": "createElement", - "norm_label": "camerainvalidationregistrar" - }, - { - "label": "CameraRegistrar", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/VoiceAudioTab.ts", - "source_location": "L83", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_voiceaudiotab_cameraregistrar", - "community": 1, - "community_name": "createElement", - "norm_label": "cameraregistrar" - }, - { - "label": "MicRegistrar", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/VoiceAudioTab.ts", - "source_location": "L82", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_voiceaudiotab_micregistrar", - "community": 1, - "community_name": "createElement", - "norm_label": "micregistrar" - }, - { - "label": "VoiceAudioTabHandle", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/VoiceAudioTab.ts", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_voiceaudiotab_voiceaudiotabhandle", - "community": 1, - "community_name": "createElement", - "norm_label": "voiceaudiotabhandle" - }, - { - "label": "SettingsOverlayOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/SettingsOverlay.ts", - "source_location": "L29", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settingsoverlay_settingsoverlayoptions", - "community": 1, - "community_name": "createElement", - "norm_label": "settingsoverlayoptions" - }, - { - "label": "DialogSemanticsOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/a11y.ts", - "source_location": "L40", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_a11y_dialogsemanticsoptions", - "community": 1, - "community_name": "createElement", - "norm_label": "dialogsemanticsoptions" - }, - { - "label": "IconName", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/icons.ts", - "source_location": "L18", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_icons_iconname", - "community": 1, - "community_name": "createElement", - "norm_label": "iconname" - }, - { - "label": "ModalInstance", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/modalFactory.ts", - "source_location": "L37", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_modalfactory_modalinstance", - "community": 1, - "community_name": "createElement", - "norm_label": "modalinstance" - }, - { - "label": "ModalOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/modalFactory.ts", - "source_location": "L18", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_modalfactory_modaloptions", - "community": 1, - "community_name": "createElement", - "norm_label": "modaloptions" - }, - { - "label": "PromptModalOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/modalFactory.ts", - "source_location": "L164", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_modalfactory_promptmodaloptions", - "community": 1, - "community_name": "createElement", - "norm_label": "promptmodaloptions" - }, - { - "label": "MountableComponent", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/safe-render.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_safe_render_mountablecomponent", - "community": 1, - "community_name": "createElement", - "norm_label": "mountablecomponent" - }, - { - "label": "ChannelType", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_channeltype", - "community": 1, - "community_name": "createElement", - "norm_label": "channeltype" - }, - { - "label": "FormMode", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform_formmode", - "community": 1, - "community_name": "createElement", - "norm_label": "formmode" - }, - { - "label": "FormState", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform_formstate", - "community": 1, - "community_name": "createElement", - "norm_label": "formstate" - }, - { - "label": "LoginFormOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L27", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform_loginformoptions", - "community": 1, - "community_name": "createElement", - "norm_label": "loginformoptions" - }, - { - "label": "ChatHeaderOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ChatHeader.ts", - "source_location": "L21", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_chatheader_chatheaderoptions", - "community": 1, - "community_name": "createElement", - "norm_label": "chatheaderoptions" - }, - { - "label": "MemberPickerOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/MemberPickerModal.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_memberpickermodal_memberpickeroptions", - "community": 1, - "community_name": "createElement", - "norm_label": "memberpickeroptions" - }, - { - "label": "SidebarDmSectionResult", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/SidebarDmSection.ts", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_sidebardmsection_sidebardmsectionresult", - "community": 1, - "community_name": "createElement", - "norm_label": "sidebardmsectionresult" - }, - { - "label": "ProcessingPipeline", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/noise-suppression.ts", - "source_location": "L70", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_noise_suppression_processingpipeline", - "community": 100, - "community_name": "noise-suppression.ts", - "norm_label": "processingpipeline" - }, - { - "label": "RNNoiseModule", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/noise-suppression.ts", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_noise_suppression_rnnoisemodule", - "community": 100, - "community_name": "noise-suppression.ts", - "norm_label": "rnnoisemodule" - }, - { - "label": "ChannelContextMenuOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/AdminActions.ts", - "source_location": "L51", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_adminactions_channelcontextmenuoptions", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": "channelcontextmenuoptions" - }, - { - "label": "ContextMenuResult", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/AdminActions.ts", - "source_location": "L65", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_adminactions_contextmenuresult", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": "contextmenuresult" - }, - { - "label": "MemberContextMenuOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/AdminActions.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_adminactions_membercontextmenuoptions", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": "membercontextmenuoptions" - }, - { - "label": "PurgeSectionOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/purge-prompt.ts", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_purge_prompt_purgesectionoptions", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": "purgesectionoptions" - }, - { - "label": "MediaEntry", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/media-visibility.ts", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_media_visibility_mediaentry", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "mediaentry" - }, - { - "label": "MockIntersectionObserver", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/media-visibility.test.ts", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_media_visibility_test_mockintersectionobserver", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "mockintersectionobserver" - }, - { - "label": "GifPickerOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/GifPicker.ts", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_gifpicker_gifpickeroptions", - "community": 12, - "community_name": "types.ts", - "norm_label": "gifpickeroptions" - }, - { - "label": "MessageInputOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MessageInput.ts", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_messageinput_messageinputoptions", - "community": 12, - "community_name": "types.ts", - "norm_label": "messageinputoptions" - }, - { - "label": "SearchOverlayOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/SearchOverlay.ts", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_searchoverlay_searchoverlayoptions", - "community": 12, - "community_name": "types.ts", - "norm_label": "searchoverlayoptions" - }, - { - "label": "ApiClientConfig", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/api.ts", - "source_location": "L33", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_api_apiclientconfig", - "community": 12, - "community_name": "types.ts", - "norm_label": "apiclientconfig" - }, - { - "label": "ApiClientError", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/api.ts", - "source_location": "L39", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_api_apiclienterror", - "community": 12, - "community_name": "types.ts", - "norm_label": "apiclienterror" - }, - { - "label": "OnUnauthorized", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/api.ts", - "source_location": "L51", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_api_onunauthorized", - "community": 12, - "community_name": "types.ts", - "norm_label": "onunauthorized" - }, - { - "label": "SessionInfo", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/api.ts", - "source_location": "L62", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_api_sessioninfo", - "community": 12, - "community_name": "types.ts", - "norm_label": "sessioninfo" - }, - { - "label": "SessionsListResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/api.ts", - "source_location": "L73", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_api_sessionslistresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "sessionslistresponse" - }, - { - "label": "GifApi", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/gifProvider.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_gifprovider_gifapi", - "community": 12, - "community_name": "types.ts", - "norm_label": "gifapi" - }, - { - "label": "GifResult", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/gifProvider.ts", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_gifprovider_gifresult", - "community": 12, - "community_name": "types.ts", - "norm_label": "gifresult" - }, - { - "label": "ApiError", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L936", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_apierror", - "community": 12, - "community_name": "types.ts", - "norm_label": "apierror" - }, - { - "label": "ApiErrorCode", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L73", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_apierrorcode", - "community": 12, - "community_name": "types.ts", - "norm_label": "apierrorcode" - }, - { - "label": "AuthErrorPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L283", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_autherrorpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "autherrorpayload" - }, - { - "label": "AuthOkPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L269", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_authokpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "authokpayload" - }, - { - "label": "AuthPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L622", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_authpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "authpayload" - }, - { - "label": "AuthResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L817", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_authresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "authresponse" - }, - { - "label": "BlockedUsersResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L1011", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_blockedusersresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "blockedusersresponse" - }, - { - "label": "CallSignalPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L593", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_callsignalpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "callsignalpayload" - }, - { - "label": "CallSignalRequestPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L600", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_callsignalrequestpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "callsignalrequestpayload" - }, - { - "label": "ChannelDeletePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L410", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_channeldeletepayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "channeldeletepayload" - }, - { - "label": "ChannelFocusPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L669", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_channelfocuspayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "channelfocuspayload" - }, - { - "label": "ChannelResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L839", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_channelresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "channelresponse" - }, - { - "label": "ChatBulkDeletedPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L338", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_chatbulkdeletedpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "chatbulkdeletedpayload" - }, - { - "label": "ChatDeletePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L651", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_chatdeletepayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "chatdeletepayload" - }, - { - "label": "ChatEditPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L646", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_chateditpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "chateditpayload" - }, - { - "label": "ChatSendOkPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L317", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_chatsendokpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "chatsendokpayload" - }, - { - "label": "ChatSendPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L639", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_chatsendpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "chatsendpayload" - }, - { - "label": "ClientMessage", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L781", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_clientmessage", - "community": 12, - "community_name": "types.ts", - "norm_label": "clientmessage" - }, - { - "label": "CreateDmResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L1000", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_createdmresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "createdmresponse" - }, - { - "label": "DmChannelClosePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L604", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_dmchannelclosepayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "dmchannelclosepayload" - }, - { - "label": "DmChannelOpenPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L589", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_dmchannelopenpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "dmchannelopenpayload" - }, - { - "label": "DmChannelsResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L995", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_dmchannelsresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "dmchannelsresponse" - }, - { - "label": "DmRecipient", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L550", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_dmrecipient", - "community": 12, - "community_name": "types.ts", - "norm_label": "dmrecipient" - }, - { - "label": "EmojiResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L948", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_emojiresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "emojiresponse" - }, - { - "label": "EmojiUpdatePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L519", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_emojiupdatepayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "emojiupdatepayload" - }, - { - "label": "ErrorPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L613", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_errorpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "errorpayload" - }, - { - "label": "GifApiResult", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L980", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_gifapiresult", - "community": 12, - "community_name": "types.ts", - "norm_label": "gifapiresult" - }, - { - "label": "GifSearchResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L990", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_gifsearchresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "gifsearchresponse" - }, - { - "label": "GroupDmResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L1008", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_groupdmresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "groupdmresponse" - }, - { - "label": "HealthResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L830", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_healthresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "healthresponse" - }, - { - "label": "IceServer", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L1016", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_iceserver", - "community": 12, - "community_name": "types.ts", - "norm_label": "iceserver" - }, - { - "label": "MarkReadPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L678", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_markreadpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "markreadpayload" - }, - { - "label": "MemberBanPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L541", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_memberbanpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "memberbanpayload" - }, - { - "label": "MemberLeavePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L500", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_memberleavepayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "memberleavepayload" - }, - { - "label": "MemberResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L909", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_memberresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "memberresponse" - }, - { - "label": "MemberUpdatePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L523", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_memberupdatepayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "memberupdatepayload" - }, - { - "label": "MessagesAroundResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L879", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_messagesaroundresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "messagesaroundresponse" - }, - { - "label": "MessagesResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L866", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_messagesresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "messagesresponse" - }, - { - "label": "PresencePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L357", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_presencepayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "presencepayload" - }, - { - "label": "PresenceUpdatePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L682", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_presenceupdatepayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "presenceupdatepayload" - }, - { - "label": "PurgeResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L902", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_purgeresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "purgeresponse" - }, - { - "label": "ReactionAction", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L42", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_reactionaction", - "community": 12, - "community_name": "types.ts", - "norm_label": "reactionaction" - }, - { - "label": "ReactionAddPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L655", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_reactionaddpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "reactionaddpayload" - }, - { - "label": "ReactionRemovePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L660", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_reactionremovepayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "reactionremovepayload" - }, - { - "label": "ReactionSummary", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L127", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_reactionsummary", - "community": 12, - "community_name": "types.ts", - "norm_label": "reactionsummary" - }, - { - "label": "ReactionUsersResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L897", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_reactionusersresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "reactionusersresponse" - }, - { - "label": "ReadyPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L287", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_readypayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "readypayload" - }, - { - "label": "RegisterResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L824", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_registerresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "registerresponse" - }, - { - "label": "RolesUpdatePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L509", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_rolesupdatepayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "rolesupdatepayload" - }, - { - "label": "SearchResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L931", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_searchresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "searchresponse" - }, - { - "label": "SearchResultItem", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L921", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_searchresultitem", - "community": 12, - "community_name": "types.ts", - "norm_label": "searchresultitem" - }, - { - "label": "ServerRestartPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L608", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_serverrestartpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "serverrestartpayload" - }, - { - "label": "TypingPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L351", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_typingpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "typingpayload" - }, - { - "label": "TypingStartPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L665", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_typingstartpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "typingstartpayload" - }, - { - "label": "UploadResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L965", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_uploadresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "uploadresponse" - }, - { - "label": "UserUpdatePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L528", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_userupdatepayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "userupdatepayload" - }, - { - "label": "VoiceCameraPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L704", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voicecamerapayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "voicecamerapayload" - }, - { - "label": "VoiceConfigPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L446", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voiceconfigpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "voiceconfigpayload" - }, - { - "label": "VoiceCredentialsResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L1022", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voicecredentialsresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "voicecredentialsresponse" - }, - { - "label": "VoiceDeafenPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L700", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voicedeafenpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "voicedeafenpayload" - }, - { - "label": "VoiceDisconnectedPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L435", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voicedisconnectedpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "voicedisconnectedpayload" - }, - { - "label": "VoiceE2EEAnnouncePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L474", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voicee2eeannouncepayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "voicee2eeannouncepayload" - }, - { - "label": "VoiceE2EEOfferPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L483", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voicee2eeofferpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "voicee2eeofferpayload" - }, - { - "label": "VoiceJoinPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L689", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voicejoinpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "voicejoinpayload" - }, - { - "label": "VoiceLeaveClientPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L694", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voiceleaveclientpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "voiceleaveclientpayload" - }, - { - "label": "VoiceModDeafenPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L720", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voicemoddeafenpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "voicemoddeafenpayload" - }, - { - "label": "VoiceModKickPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L731", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voicemodkickpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "voicemodkickpayload" - }, - { - "label": "VoiceModMovePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L726", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voicemodmovepayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "voicemodmovepayload" - }, - { - "label": "VoiceModMutePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L714", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voicemodmutepayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "voicemodmutepayload" - }, - { - "label": "VoiceMovedPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L430", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voicemovedpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "voicemovedpayload" - }, - { - "label": "VoiceMutePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L696", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voicemutepayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "voicemutepayload" - }, - { - "label": "VoiceQuality", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L39", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voicequality", - "community": 12, - "community_name": "types.ts", - "norm_label": "voicequality" - }, - { - "label": "VoiceScreensharePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L708", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voicescreensharepayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "voicescreensharepayload" - }, - { - "label": "VoiceSpeakersPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L457", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voicespeakerspayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "voicespeakerspayload" - }, - { - "label": "VoiceTokenPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L463", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voicetokenpayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "voicetokenpayload" - }, - { - "label": "WsEnvelope", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L259", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_wsenvelope", - "community": 12, - "community_name": "types.ts", - "norm_label": "wsenvelope" - }, - { - "label": "WsErrorCode", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L51", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_wserrorcode", - "community": 12, - "community_name": "types.ts", - "norm_label": "wserrorcode" - }, - { - "label": "ConnectionStats", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/connectionStats.ts", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_connectionstats_connectionstats", - "community": 123, - "community_name": "connectionStats.ts", - "norm_label": "connectionstats" - }, - { - "label": "ConnectionStatsPoller", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/connectionStats.ts", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_connectionstats_connectionstatspoller", - "community": 123, - "community_name": "connectionStats.ts", - "norm_label": "connectionstatspoller" - }, - { - "label": "PrevSnapshot", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/connectionStats.ts", - "source_location": "L48", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_connectionstats_prevsnapshot", - "community": 123, - "community_name": "connectionStats.ts", - "norm_label": "prevsnapshot" - }, - { - "label": "QualityLevel", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/connectionStats.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_connectionstats_qualitylevel", - "community": 123, - "community_name": "connectionStats.ts", - "norm_label": "qualitylevel" - }, - { - "label": "CodeToken", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/syntax-highlight.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_syntax_highlight_codetoken", - "community": 149, - "community_name": "syntax-highlight.ts", - "norm_label": "codetoken" - }, - { - "label": "LangSpec", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/syntax-highlight.ts", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_syntax_highlight_langspec", - "community": 149, - "community_name": "syntax-highlight.ts", - "norm_label": "langspec" - }, - { - "label": "Pattern", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/syntax-highlight.ts", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_syntax_highlight_pattern", - "community": 149, - "community_name": "syntax-highlight.ts", - "norm_label": "pattern" - }, - { - "label": "TokenClass", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/syntax-highlight.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_syntax_highlight_tokenclass", - "community": 149, - "community_name": "syntax-highlight.ts", - "norm_label": "tokenclass" - }, - { - "label": "BlockNode", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/markdown.ts", - "source_location": "L309", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_markdown_blocknode", - "community": 154, - "community_name": "markdown.ts", - "norm_label": "blocknode" - }, - { - "label": "DelimSpec", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/markdown.ts", - "source_location": "L41", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_markdown_delimspec", - "community": 154, - "community_name": "markdown.ts", - "norm_label": "delimspec" - }, - { - "label": "InlineNode", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/markdown.ts", - "source_location": "L18", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_markdown_inlinenode", - "community": 154, - "community_name": "markdown.ts", - "norm_label": "inlinenode" - }, - { - "label": "InlineStyle", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/markdown.ts", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_markdown_inlinestyle", - "community": 154, - "community_name": "markdown.ts", - "norm_label": "inlinestyle" - }, - { - "label": "ListItem", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/markdown.ts", - "source_location": "L320", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_markdown_listitem", - "community": 154, - "community_name": "markdown.ts", - "norm_label": "listitem" - }, - { - "label": "InviteLink", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/deep-link.ts", - "source_location": "L31", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_deep_link_invitelink", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": "invitelink" - }, - { - "label": "MessageLink", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/deep-link.ts", - "source_location": "L36", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_deep_link_messagelink", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": "messagelink" - }, - { - "label": "VideoModeController", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/VideoModeController.ts", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_videomodecontroller_videomodecontroller", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": "videomodecontroller" - }, - { - "label": "VideoModeControllerOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/VideoModeController.ts", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_videomodecontroller_videomodecontrolleroptions", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": "videomodecontrolleroptions" - }, - { - "label": "VoiceStateStub", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/video-mode-controller.test.ts", - "source_location": "L57", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_video_mode_controller_test_voicestatestub", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": "voicestatestub" - }, - { - "label": "VideoTrackDeps", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L140", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_videotrackdeps", - "community": 156, - "community_name": ".attemptAutoReconnect", - "norm_label": "videotrackdeps" - }, - { - "label": "KeyState", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/rate-limiter.ts", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_rate_limiter_keystate", - "community": 157, - "community_name": "rate-limiter.ts", - "norm_label": "keystate" - }, - { - "label": "RateLimiter", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/rate-limiter.ts", - "source_location": "L33", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_rate_limiter_ratelimiter", - "community": 157, - "community_name": "rate-limiter.ts", - "norm_label": "ratelimiter" - }, - { - "label": "RateLimiterConfig", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/rate-limiter.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_rate_limiter_ratelimiterconfig", - "community": 157, - "community_name": "rate-limiter.ts", - "norm_label": "ratelimiterconfig" - }, - { - "label": "TileConfig", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VideoGrid.ts", - "source_location": "L18", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_videogrid_tileconfig", - "community": 159, - "community_name": "video-grid.test.ts", - "norm_label": "tileconfig" - }, - { - "label": "SavedCredential", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/credentials.ts", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_credentials_savedcredential", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "savedcredential" - }, - { - "label": "ServerPanelOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/ServerPanel.ts", - "source_location": "L48", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_serverpanel_serverpaneloptions", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "serverpaneloptions" - }, - { - "label": "SimpleProfile", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/ServerPanel.ts", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_serverpanel_simpleprofile", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "simpleprofile" - }, - { - "label": "ConnectPageCallbacks", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/ConnectPage.ts", - "source_location": "L21", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connectpage_connectpagecallbacks", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "connectpagecallbacks" - }, - { - "label": "LogsTabHandle", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/LogsTab.ts", - "source_location": "L74", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_logstab_logstabhandle", - "community": 177, - "community_name": "logger.ts", - "norm_label": "logstabhandle" - }, - { - "label": "TabName", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/SettingsOverlay.ts", - "source_location": "L54", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settingsoverlay_tabname", - "community": 177, - "community_name": "logger.ts", - "norm_label": "tabname" - }, - { - "label": "UpdateNotifierOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/UpdateNotifier.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_updatenotifier_updatenotifieroptions", - "community": 177, - "community_name": "logger.ts", - "norm_label": "updatenotifieroptions" - }, - { - "label": "LogEntry", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logger.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logger_logentry", - "community": 177, - "community_name": "logger.ts", - "norm_label": "logentry" - }, - { - "label": "LogLevel", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logger.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logger_loglevel", - "community": 177, - "community_name": "logger.ts", - "norm_label": "loglevel" - }, - { - "label": "DownloadProgress", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/updater.ts", - "source_location": "L18", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_updater_downloadprogress", - "community": 177, - "community_name": "logger.ts", - "norm_label": "downloadprogress" - }, - { - "label": "UpdateCheckResult", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/updater.ts", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_updater_updatecheckresult", - "community": 177, - "community_name": "logger.ts", - "norm_label": "updatecheckresult" - }, - { - "label": "RoomRig", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/screen-share-tracks.test.ts", - "source_location": "L81", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_screen_share_tracks_test_roomrig", - "community": 187, - "community_name": "screen-share-tracks.test.ts", - "norm_label": "roomrig" - }, - { - "label": "VideoTrackDeps", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/screen-share-tracks.test.ts", - "source_location": "L51", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_screen_share_tracks_test_videotrackdeps", - "community": 187, - "community_name": "screen-share-tracks.test.ts", - "norm_label": "videotrackdeps" - }, - { - "label": "LoginFormApi", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L41", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform_loginformapi", - "community": 188, - "community_name": "LoginFormApi", - "norm_label": "loginformapi" - }, - { - "label": "CapturedCall", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/social.parity.spec.ts", - "source_location": "L32", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_social_parity_spec_capturedcall", - "community": 189, - "community_name": "social.parity.spec.ts", - "norm_label": "capturedcall" - }, - { - "label": "IdentityPinLookup", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/identity.ts", - "source_location": "L142", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_identity_identitypinlookup", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "identitypinlookup" - }, - { - "label": "StoreIdentityPinResult", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/identity.ts", - "source_location": "L113", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_identity_storeidentitypinresult", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "storeidentitypinresult" - }, - { - "label": "E2EEDeps", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L37", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eedeps", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "e2eedeps" - }, - { - "label": "E2EEManager", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L45", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "e2eemanager" - }, - { - "label": "AudioPipeline", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": "audiopipeline" - }, - { - "label": "RNNoiseProcessor", - "file_type": "code", - "source_file": "Client/tauri-client/public/rnnoise-worklet.js", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_public_rnnoise_worklet_rnnoiseprocessor", - "community": 217, - "community_name": "RNNoiseProcessor", - "norm_label": "rnnoiseprocessor" - }, - { - "label": "FakeAudioWorkletProcessor", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/rnnoise-worklet.test.ts", - "source_location": "L32", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_rnnoise_worklet_test_fakeaudioworkletprocessor", - "community": 217, - "community_name": "RNNoiseProcessor", - "norm_label": "fakeaudioworkletprocessor" - }, - { - "label": "DeviceManager", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/deviceManager.ts", - "source_location": "L37", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_devicemanager_devicemanager", - "community": 218, - "community_name": "DeviceManager", - "norm_label": "devicemanager" - }, - { - "label": "Mountable", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/test-harness.ts", - "source_location": "L21", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_test_harness_mountable", - "community": 220, - "community_name": "TestHarness", - "norm_label": "mountable" - }, - { - "label": "TestHarness", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/test-harness.ts", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_test_harness_testharness", - "community": 220, - "community_name": "TestHarness", - "norm_label": "testharness" - }, - { - "label": "VoiceModMenuOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/channel-sidebar/volume-menu.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channel_sidebar_volume_menu_voicemodmenuoptions", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "voicemodmenuoptions" - }, - { - "label": "IncomingCallBannerComponent", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/IncomingCallBanner.ts", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_incomingcallbanner_incomingcallbannercomponent", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "incomingcallbannercomponent" - }, - { - "label": "ServerBannerControl", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ServerBanner.ts", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_serverbanner_serverbannercontrol", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "serverbannercontrol" - }, - { - "label": "ToastContainer", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/Toast.ts", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_toast_toastcontainer", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "toastcontainer" - }, - { - "label": "ToastEntry", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/Toast.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_toast_toastentry", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "toastentry" - }, - { - "label": "ToastType", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/Toast.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_toast_toasttype", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "toasttype" - }, - { - "label": "GridLayout", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VideoGrid.ts", - "source_location": "L56", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_videogrid_gridlayout", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "gridlayout" - }, - { - "label": "VideoGridComponent", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VideoGrid.ts", - "source_location": "L27", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_videogrid_videogridcomponent", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "videogridcomponent" - }, - { - "label": "ApiClient", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/api.ts", - "source_location": "L814", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_api_apiclient", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "apiclient" - }, - { - "label": "RingController", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/call-ring.ts", - "source_location": "L46", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_call_ring_ringcontroller", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "ringcontroller" - }, - { - "label": "RingControllerOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/call-ring.ts", - "source_location": "L31", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_call_ring_ringcontrolleroptions", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "ringcontrolleroptions" - }, - { - "label": "RingEndReason", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/call-ring.ts", - "source_location": "L29", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_call_ring_ringendreason", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "ringendreason" - }, - { - "label": "RingState", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/call-ring.ts", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_call_ring_ringstate", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "ringstate" - }, - { - "label": "MessageJumpHandler", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/message-navigation.ts", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_message_navigation_messagejumphandler", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "messagejumphandler" - }, - { - "label": "InviteResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L955", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_inviteresponse", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "inviteresponse" - }, - { - "label": "ChatAreaOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ChatArea.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_chatarea_chatareaoptions", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "chatareaoptions" - }, - { - "label": "ChatAreaResult", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ChatArea.ts", - "source_location": "L35", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_chatarea_chatarearesult", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "chatarearesult" - }, - { - "label": "InviteManagerController", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/OverlayManagers.ts", - "source_location": "L149", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_overlaymanagers_invitemanagercontroller", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "invitemanagercontroller" - }, - { - "label": "PinnedPanelController", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/OverlayManagers.ts", - "source_location": "L230", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_overlaymanagers_pinnedpanelcontroller", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "pinnedpanelcontroller" - }, - { - "label": "QuickSwitcherManager", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/OverlayManagers.ts", - "source_location": "L88", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_overlaymanagers_quickswitchermanager", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "quickswitchermanager" - }, - { - "label": "SearchOverlayController", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/OverlayManagers.ts", - "source_location": "L321", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_overlaymanagers_searchoverlaycontroller", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "searchoverlaycontroller" - }, - { - "label": "SidebarMemberSectionOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/SidebarMemberSection.ts", - "source_location": "L27", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_sidebarmembersection_sidebarmembersectionoptions", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "sidebarmembersectionoptions" - }, - { - "label": "SidebarMemberSectionResult", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/SidebarMemberSection.ts", - "source_location": "L34", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_sidebarmembersection_sidebarmembersectionresult", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "sidebarmembersectionresult" - }, - { - "label": "MainPageOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/MainPage.ts", - "source_location": "L79", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_mainpage_mainpageoptions", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "mainpageoptions" - }, - { - "label": "CertReconnectRouter", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/cert-reconnect.ts", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_cert_reconnect_certreconnectrouter", - "community": 253, - "community_name": "reconnectAfterCertAccept", - "norm_label": "certreconnectrouter" - }, - { - "label": "CertReconnectWs", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/cert-reconnect.ts", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_cert_reconnect_certreconnectws", - "community": 253, - "community_name": "reconnectAfterCertAccept", - "norm_label": "certreconnectws" - }, - { - "label": "CapturedCall", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/emoji-voicemod.parity.spec.ts", - "source_location": "L41", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_emoji_voicemod_parity_spec_capturedcall", - "community": 255, - "community_name": "emoji-voicemod.parity.spec.ts", - "norm_label": "capturedcall" - }, - { - "label": "PeerCrypto", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/voice-e2ee-verify.spec.ts", - "source_location": "L39", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_voice_e2ee_verify_spec_peercrypto", - "community": 256, - "community_name": "voice-e2ee-verify.spec.ts", - "norm_label": "peercrypto" - }, - { - "label": "NavigateListener", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/router.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_router_navigatelistener", - "community": 267, - "community_name": "router.ts", - "norm_label": "navigatelistener" - }, - { - "label": "PageId", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/router.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_router_pageid", - "community": 267, - "community_name": "router.ts", - "norm_label": "pageid" - }, - { - "label": "Router", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/router.ts", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_router_router", - "community": 267, - "community_name": "router.ts", - "norm_label": "router" - }, - { - "label": "FenwickTree", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/fenwick.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_fenwick_fenwicktree", - "community": 292, - "community_name": "FenwickTree", - "norm_label": "fenwicktree" - }, - { - "label": "Permission", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/capabilities-scope.test.ts", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_capabilities_scope_test_permission", - "community": 296, - "community_name": "capabilities-scope.test.ts", - "norm_label": "permission" - }, - { - "label": "ScopedPermission", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/capabilities-scope.test.ts", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_capabilities_scope_test_scopedpermission", - "community": 296, - "community_name": "capabilities-scope.test.ts", - "norm_label": "scopedpermission" - }, - { - "label": "ScopeEntry", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/capabilities-scope.test.ts", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_capabilities_scope_test_scopeentry", - "community": 296, - "community_name": "capabilities-scope.test.ts", - "norm_label": "scopeentry" - }, - { - "label": "AudioElements", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L65", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_audioelements", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "audioelements" - }, - { - "label": "DispatcherCleanup", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/dispatcher.ts", - "source_location": "L170", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_dispatcher_dispatchercleanup", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "dispatchercleanup" - }, - { - "label": "SessionDebugDeps", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitDiagnostics.ts", - "source_location": "L128", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitdiagnostics_sessiondebugdeps", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "sessiondebugdeps" - }, - { - "label": "PendingVoiceJoin", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L80", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_pendingvoicejoin", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "pendingvoicejoin" - }, - { - "label": "RemoteVideoCallback", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L74", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_remotevideocallback", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "remotevideocallback" - }, - { - "label": "RemoteVideoRemovedCallback", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L79", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_remotevideoremovedcallback", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "remotevideoremovedcallback" - }, - { - "label": "SessionState", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L93", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_sessionstate", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "sessionstate" - }, - { - "label": "NavigationGuard", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/navigation-guard.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_navigation_guard_navigationguard", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "navigationguard" - }, - { - "label": "ClientMessageTypeValue", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/protocolTypes.ts", - "source_location": "L92", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_protocoltypes_clientmessagetypevalue", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "clientmessagetypevalue" - }, - { - "label": "MessageTypeValue", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/protocolTypes.ts", - "source_location": "L103", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_protocoltypes_messagetypevalue", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "messagetypevalue" - }, - { - "label": "ServerMessageTypeValue", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/protocolTypes.ts", - "source_location": "L56", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_protocoltypes_servermessagetypevalue", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "servermessagetypevalue" - }, - { - "label": "RemoteVideoCallback", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/roomEventHandlers.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_roomeventhandlers_remotevideocallback", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "remotevideocallback" - }, - { - "label": "RemoteVideoRemovedCallback", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/roomEventHandlers.ts", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_roomeventhandlers_remotevideoremovedcallback", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "remotevideoremovedcallback" - }, - { - "label": "RoomEventDeps", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/roomEventHandlers.ts", - "source_location": "L30", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_roomeventhandlers_roomeventdeps", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "roomeventdeps" - }, - { - "label": "ReadyVoiceState", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L198", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_readyvoicestate", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "readyvoicestate" - }, - { - "label": "VoiceLeavePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L440", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voiceleavepayload", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "voiceleavepayload" - }, - { - "label": "VoiceStatePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L414", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_voicestatepayload", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "voicestatepayload" - }, - { - "label": "GlobalKeybindHandlers", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/GlobalKeybinds.ts", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_globalkeybinds_globalkeybindhandlers", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "globalkeybindhandlers" - }, - { - "label": "VideoModeSlots", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/VideoModeController.ts", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_videomodecontroller_videomodeslots", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "videomodeslots" - }, - { - "label": "LogoutReason", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/auth.store.ts", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_auth_store_logoutreason", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "logoutreason" - }, - { - "label": "BlocksState", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/blocks.store.ts", - "source_location": "L21", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_blocks_store_blocksstate", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "blocksstate" - }, - { - "label": "VoiceConfig", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L39", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_voiceconfig", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "voiceconfig" - }, - { - "label": "Harness", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/room-event-handlers.test.ts", - "source_location": "L48", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_room_event_handlers_test_harness", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "harness" - }, - { - "label": "VoiceWidgetOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VoiceWidget.ts", - "source_location": "L27", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_voicewidget_voicewidgetoptions", - "community": 315, - "community_name": "VoiceWidgetOptions", - "norm_label": "voicewidgetoptions" - }, - { - "label": "CertTofuPayload", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/cert-tofu.spec.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_cert_tofu_spec_certtofupayload", - "community": 317, - "community_name": "cert-tofu.spec.ts", - "norm_label": "certtofupayload" - }, - { - "label": "QuickSwitcherOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/QuickSwitcher.ts", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_quickswitcher_quickswitcheroptions", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "quickswitcheroptions" - }, - { - "label": "QuickSwitchProfile", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/QuickSwitchOverlay.ts", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_quickswitchoverlay_quickswitchprofile", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "quickswitchprofile" - }, - { - "label": "RateLimiterSet", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/rate-limiter.ts", - "source_location": "L183", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_rate_limiter_ratelimiterset", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "ratelimiterset" - }, - { - "label": "MarkReadSender", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/read-state.ts", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_read_state_markreadsender", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "markreadsender" - }, - { - "label": "ChannelCreatePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L366", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_channelcreatepayload", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "channelcreatepayload" - }, - { - "label": "ChannelUpdatePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L391", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_channelupdatepayload", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "channelupdatepayload" - }, - { - "label": "DmChannelPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L560", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_dmchannelpayload", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "dmchannelpayload" - }, - { - "label": "ReadyChannel", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L138", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_readychannel", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "readychannel" - }, - { - "label": "SidebarAreaOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/SidebarArea.ts", - "source_location": "L58", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_sidebararea_sidebarareaoptions", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "sidebarareaoptions" - }, - { - "label": "SidebarAreaResult", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/SidebarArea.ts", - "source_location": "L72", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_sidebararea_sidebararearesult", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "sidebararearesult" - }, - { - "label": "DmHelperDeps", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/SidebarDmHelpers.ts", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_sidebardmhelpers_dmhelperdeps", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "dmhelperdeps" - }, - { - "label": "SidebarDmSectionOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/SidebarDmSection.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_sidebardmsection_sidebardmsectionoptions", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "sidebardmsectionoptions" - }, - { - "label": "SidebarVoiceCallbacks", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/VoiceCallbacks.ts", - "source_location": "L48", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_voicecallbacks_sidebarvoicecallbacks", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "sidebarvoicecallbacks" - }, - { - "label": "VoiceLimiters", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/VoiceCallbacks.ts", - "source_location": "L35", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_voicecallbacks_voicelimiters", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "voicelimiters" - }, - { - "label": "VoiceWidgetCallbacks", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/VoiceCallbacks.ts", - "source_location": "L40", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_voicecallbacks_voicewidgetcallbacks", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "voicewidgetcallbacks" - }, - { - "label": "DmChannel", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/dm.store.ts", - "source_location": "L18", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_dm_store_dmchannel", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "dmchannel" - }, - { - "label": "DmState", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/dm.store.ts", - "source_location": "L45", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_dm_store_dmstate", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "dmstate" - }, - { - "label": "DmUser", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/dm.store.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_dm_store_dmuser", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "dmuser" - }, - { - "label": "PeerVerification", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L59", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_peerverification", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "peerverification" - }, - { - "label": "VoiceStatus", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L37", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_voicestatus", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "voicestatus" - }, - { - "label": "VoiceUser", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_voiceuser", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "voiceuser" - }, - { - "label": "MockedFn", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-area.test.ts", - "source_location": "L175", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_area_test_mockedfn", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "mockedfn" - }, - { - "label": "VoiceStateStub", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/voice-callbacks.test.ts", - "source_location": "L87", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_voice_callbacks_test_voicestatestub", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "voicestatestub" - }, - { - "label": "FetchCall", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/admin-static-channel-perms.test.ts", - "source_location": "L35", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_admin_static_channel_perms_test_fetchcall", - "community": 334, - "community_name": "admin-static-channel-perms.test.ts", - "norm_label": "fetchcall" - }, - { - "label": "VirtualItem", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MessageList.ts", - "source_location": "L99", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_messagelist_virtualitem", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "virtualitem" - }, - { - "label": "VirtualItemDivider", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MessageList.ts", - "source_location": "L88", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_messagelist_virtualitemdivider", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "virtualitemdivider" - }, - { - "label": "VirtualItemMessage", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MessageList.ts", - "source_location": "L82", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_messagelist_virtualitemmessage", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "virtualitemmessage" - }, - { - "label": "VirtualItemNewDivider", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MessageList.ts", - "source_location": "L95", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_messagelist_virtualitemnewdivider", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "virtualitemnewdivider" - }, - { - "label": "UserProfileData", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/UserProfilePopup.ts", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_userprofilepopup_userprofiledata", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "userprofiledata" - }, - { - "label": "UserProfilePopupOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/UserProfilePopup.ts", - "source_location": "L40", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_userprofilepopup_userprofilepopupoptions", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "userprofilepopupoptions" - }, - { - "label": "Message", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L32", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_message", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "message" - }, - { - "label": "MessageListComponent", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list.test.ts", - "source_location": "L82", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_test_messagelistcomponent", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "messagelistcomponent" - }, - { - "label": "VadProcessor", - "file_type": "code", - "source_file": "Client/tauri-client/public/vad-worklet.js", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_public_vad_worklet_vadprocessor", - "community": 363, - "community_name": "VadProcessor", - "norm_label": "vadprocessor" - }, - { - "label": "DragState", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/channel-sidebar/drag-reorder.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channel_sidebar_drag_reorder_dragstate", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "dragstate" - }, - { - "label": "ChannelReorderData", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ChannelSidebar.ts", - "source_location": "L155", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channelsidebar_channelreorderdata", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "channelreorderdata" - }, - { - "label": "ChannelSidebarOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ChannelSidebar.ts", - "source_location": "L179", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channelsidebar_channelsidebaroptions", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "channelsidebaroptions" - }, - { - "label": "VoiceModerationCallbacks", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ChannelSidebar.ts", - "source_location": "L162", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channelsidebar_voicemoderationcallbacks", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "voicemoderationcallbacks" - }, - { - "label": "PreviewState", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/streamPreview.ts", - "source_location": "L18", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_streampreview_previewstate", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "previewstate" - }, - { - "label": "Permission", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L232", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_permission", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "permission" - }, - { - "label": "MonitorRect", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/window-state.ts", - "source_location": "L31", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_window_state_monitorrect", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "monitorrect" - }, - { - "label": "WindowRect", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/window-state.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_window_state_windowrect", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "windowrect" - }, - { - "label": "Channel", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/channels.store.ts", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_channels_store_channel", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "channel" - }, - { - "label": "Rig", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/drag-reorder.test.ts", - "source_location": "L59", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_drag_reorder_test_rig", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "rig" - }, - { - "label": "JSDOM", - "file_type": "code", - "source_file": "Client/tauri-client/tests/types/jsdom.d.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_types_jsdom_d_jsdom", - "community": 391, - "community_name": "jsdom.d.ts", - "norm_label": "jsdom" - }, - { - "label": "JSDOMOptions", - "file_type": "code", - "source_file": "Client/tauri-client/tests/types/jsdom.d.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_types_jsdom_d_jsdomoptions", - "community": 391, - "community_name": "jsdom.d.ts", - "norm_label": "jsdomoptions" - }, - { - "label": "MessageListComponent", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MessageList.ts", - "source_location": "L238", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_messagelist_messagelistcomponent", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "messagelistcomponent" - }, - { - "label": "NsfwGateOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/NsfwGate.ts", - "source_location": "L21", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_nsfwgate_nsfwgateoptions", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "nsfwgateoptions" - }, - { - "label": "ChatDeletedPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L332", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_chatdeletedpayload", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "chatdeletedpayload" - }, - { - "label": "ChatEditedPayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L322", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_chateditedpayload", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "chateditedpayload" - }, - { - "label": "ChatMessagePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L295", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_chatmessagepayload", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "chatmessagepayload" - }, - { - "label": "MessageResponse", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L848", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_messageresponse", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "messageresponse" - }, - { - "label": "MessageUser", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L91", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_messageuser", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "messageuser" - }, - { - "label": "ReactionUpdatePayload", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L343", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_reactionupdatepayload", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "reactionupdatepayload" - }, - { - "label": "UserWithRole", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L101", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_userwithrole", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "userwithrole" - }, - { - "label": "ChannelController", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ChannelController.ts", - "source_location": "L70", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_channelcontroller_channelcontroller", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "channelcontroller" - }, - { - "label": "ChannelControllerOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ChannelController.ts", - "source_location": "L52", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_channelcontroller_channelcontrolleroptions", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "channelcontrolleroptions" - }, - { - "label": "ChatHeaderRefs", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ChatHeader.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_chatheader_chatheaderrefs", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "chatheaderrefs" - }, - { - "label": "MessageController", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/MessageController.ts", - "source_location": "L67", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_messagecontroller_messagecontroller", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "messagecontroller" - }, - { - "label": "MessageControllerOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/MessageController.ts", - "source_location": "L62", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_messagecontroller_messagecontrolleroptions", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "messagecontrolleroptions" - }, - { - "label": "PendingDeleteManager", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/MessageController.ts", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_messagecontroller_pendingdeletemanager", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "pendingdeletemanager" - }, - { - "label": "MessageJumper", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/MessageJump.ts", - "source_location": "L37", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_messagejump_messagejumper", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "messagejumper" - }, - { - "label": "MessageJumpOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/MessageJump.ts", - "source_location": "L27", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_messagejump_messagejumpoptions", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "messagejumpoptions" - }, - { - "label": "ReactionController", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ReactionController.ts", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_reactioncontroller_reactioncontroller", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "reactioncontroller" - }, - { - "label": "ReactionControllerOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ReactionController.ts", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_reactioncontroller_reactioncontrolleroptions", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "reactioncontrolleroptions" - }, - { - "label": "MessageStatus", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L30", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_messagestatus", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "messagestatus" - }, - { - "label": "PendingReaction", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L67", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_pendingreaction", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "pendingreaction" - }, - { - "label": "StatusOption", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccountTab.ts", - "source_location": "L819", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accounttab_statusoption", - "community": 44, - "community_name": "authStore", - "norm_label": "statusoption" - }, - { - "label": "StatusDef", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/StatusPicker.ts", - "source_location": "L38", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_statuspicker_statusdef", - "community": 44, - "community_name": "authStore", - "norm_label": "statusdef" - }, - { - "label": "StatusPickerComponent", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/StatusPicker.ts", - "source_location": "L27", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_statuspicker_statuspickercomponent", - "community": 44, - "community_name": "authStore", - "norm_label": "statuspickercomponent" - }, - { - "label": "StatusPickerOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/StatusPicker.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_statuspicker_statuspickeroptions", - "community": 44, - "community_name": "authStore", - "norm_label": "statuspickeroptions" - }, - { - "label": "UserBarOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/UserBar.ts", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_userbar_userbaroptions", - "community": 44, - "community_name": "authStore", - "norm_label": "userbaroptions" - }, - { - "label": "AutoIdleController", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/autoIdle.ts", - "source_location": "L48", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_autoidle_autoidlecontroller", - "community": 44, - "community_name": "authStore", - "norm_label": "autoidlecontroller" - }, - { - "label": "AutoIdleOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/autoIdle.ts", - "source_location": "L37", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_autoidle_autoidleoptions", - "community": 44, - "community_name": "authStore", - "norm_label": "autoidleoptions" - }, - { - "label": "PresenceSender", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/presence.ts", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_presence_presencesender", - "community": 44, - "community_name": "authStore", - "norm_label": "presencesender" - }, - { - "label": "ServerMessage", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L739", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_servermessage", - "community": 44, - "community_name": "authStore", - "norm_label": "servermessage" - }, - { - "label": "UserStatus", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_userstatus", - "community": 44, - "community_name": "authStore", - "norm_label": "userstatus" - }, - { - "label": "StatusOrigin", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/userStatus.ts", - "source_location": "L27", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_userstatus_statusorigin", - "community": 44, - "community_name": "authStore", - "norm_label": "statusorigin" - }, - { - "label": "CertFirstUseListener", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ws.ts", - "source_location": "L82", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ws_certfirstuselistener", - "community": 44, - "community_name": "authStore", - "norm_label": "certfirstuselistener" - }, - { - "label": "CertMismatchListener", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ws.ts", - "source_location": "L81", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ws_certmismatchlistener", - "community": 44, - "community_name": "authStore", - "norm_label": "certmismatchlistener" - }, - { - "label": "CertTofuEvent", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ws.ts", - "source_location": "L66", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ws_certtofuevent", - "community": 44, - "community_name": "authStore", - "norm_label": "certtofuevent" - }, - { - "label": "ConnectionState", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ws.ts", - "source_location": "L33", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ws_connectionstate", - "community": 44, - "community_name": "authStore", - "norm_label": "connectionstate" - }, - { - "label": "ConnectionStatus", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ws.ts", - "source_location": "L37", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ws_connectionstatus", - "community": 44, - "community_name": "authStore", - "norm_label": "connectionstatus" - }, - { - "label": "WsClient", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ws.ts", - "source_location": "L804", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ws_wsclient", - "community": 44, - "community_name": "authStore", - "norm_label": "wsclient" - }, - { - "label": "WsClientConfig", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ws.ts", - "source_location": "L84", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ws_wsclientconfig", - "community": 44, - "community_name": "authStore", - "norm_label": "wsclientconfig" - }, - { - "label": "WsListener", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ws.ts", - "source_location": "L56", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ws_wslistener", - "community": 44, - "community_name": "authStore", - "norm_label": "wslistener" - }, - { - "label": "MockWsClient", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/mock-ws.ts", - "source_location": "L169", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_mock_ws_mockwsclient", - "community": 44, - "community_name": "authStore", - "norm_label": "mockwsclient" - }, - { - "label": "SentEnvelope", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/mock-ws.ts", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_mock_ws_sentenvelope", - "community": 44, - "community_name": "authStore", - "norm_label": "sentenvelope" - }, - { - "label": "MockWsClient", - "file_type": "code", - "source_file": "Client/tauri-client/tests/integration/stores.test.ts", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_integration_stores_test_mockwsclient", - "community": 44, - "community_name": "authStore", - "norm_label": "mockwsclient" - }, - { - "label": "FakeWsClient", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/main-page.test.ts", - "source_location": "L201", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_main_page_test_fakewsclient", - "community": 44, - "community_name": "authStore", - "norm_label": "fakewsclient" - }, - { - "label": "NativeFixtures", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native-fixture.ts", - "source_location": "L98", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_fixture_nativefixtures", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "nativefixtures" - }, - { - "label": "PersistentNativeFixtures", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native-fixture-persistent.ts", - "source_location": "L198", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_fixture_persistent_persistentnativefixtures", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "persistentnativefixtures" - }, - { - "label": "PersistentState", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native-fixture-persistent.ts", - "source_location": "L102", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_fixture_persistent_persistentstate", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "persistentstate" - }, - { - "label": "MockAudioContext", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/notifications.test.ts", - "source_location": "L84", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_notifications_test_mockaudiocontext", - "community": 536, - "community_name": "MockAudioContext", - "norm_label": "mockaudiocontext" - }, - { - "label": "HoverState", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/reaction-tooltip.ts", - "source_location": "L216", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_reaction_tooltip_hoverstate", - "community": 54, - "community_name": "reaction-tooltip.ts", - "norm_label": "hoverstate" - }, - { - "label": "ReactionTooltipTarget", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/reaction-tooltip.ts", - "source_location": "L208", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_reaction_tooltip_reactiontooltiptarget", - "community": 54, - "community_name": "reaction-tooltip.ts", - "norm_label": "reactiontooltiptarget" - }, - { - "label": "ReactionUsersFetcher", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/reaction-tooltip.ts", - "source_location": "L31", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_reaction_tooltip_reactionusersfetcher", - "community": 54, - "community_name": "reaction-tooltip.ts", - "norm_label": "reactionusersfetcher" - }, - { - "label": "ReactionUser", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L886", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_reactionuser", - "community": 54, - "community_name": "reaction-tooltip.ts", - "norm_label": "reactionuser" - }, - { - "label": "ProfileManager", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L153", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_profilemanager", - "community": 64, - "community_name": "ProfileManager", - "norm_label": "profilemanager" - }, - { - "label": "CreateProfileData", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L49", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_createprofiledata", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "createprofiledata" - }, - { - "label": "FetchFn", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L73", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_fetchfn", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "fetchfn" - }, - { - "label": "HealthStatus", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L37", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_healthstatus", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "healthstatus" - }, - { - "label": "PersistenceBackend", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L64", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_persistencebackend", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "persistencebackend" - }, - { - "label": "ProfilesState", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L44", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_profilesstate", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "profilesstate" - }, - { - "label": "ServerProfile", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_serverprofile", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "serverprofile" - }, - { - "label": "StoredData", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L54", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_storeddata", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "storeddata" - }, - { - "label": "UpdateProfileData", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L51", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_updateprofiledata", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "updateprofiledata" - }, - { - "label": "Store", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/store.ts", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_store_store", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "store" - }, - { - "label": "ServerPanelApi", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/ServerPanel.ts", - "source_location": "L60", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_serverpanel_serverpanelapi", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "serverpanelapi" - }, - { - "label": "MapState", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/store.test.ts", - "source_location": "L438", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_store_test_mapstate", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "mapstate" - }, - { - "label": "TestState", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/store.test.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_store_test_teststate", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "teststate" - }, - { - "label": "EmojiAutocompleteComponent", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EmojiAutocomplete.ts", - "source_location": "L61", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_emojiautocomplete_emojiautocompletecomponent", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "emojiautocompletecomponent" - }, - { - "label": "EmojiAutocompleteOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EmojiAutocomplete.ts", - "source_location": "L49", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_emojiautocomplete_emojiautocompleteoptions", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "emojiautocompleteoptions" - }, - { - "label": "EmojiSuggestion", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EmojiAutocomplete.ts", - "source_location": "L35", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_emojiautocomplete_emojisuggestion", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "emojisuggestion" - }, - { - "label": "CustomEmoji", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EmojiPicker.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_emojipicker_customemoji", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "customemoji" - }, - { - "label": "EmojiCategory", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EmojiPicker.ts", - "source_location": "L35", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_emojipicker_emojicategory", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "emojicategory" - }, - { - "label": "EmojiPickerOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EmojiPicker.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_emojipicker_emojipickeroptions", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "emojipickeroptions" - }, - { - "label": "InlineAutocompleteComponent", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/inline-autocomplete.ts", - "source_location": "L61", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_inline_autocomplete_inlineautocompletecomponent", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "inlineautocompletecomponent" - }, - { - "label": "InlineAutocompleteConfig", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/inline-autocomplete.ts", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_inline_autocomplete_inlineautocompleteconfig", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "inlineautocompleteconfig" - }, - { - "label": "MentionAutocompleteComponent", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MentionAutocomplete.ts", - "source_location": "L43", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_mentionautocomplete_mentionautocompletecomponent", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "mentionautocompletecomponent" - }, - { - "label": "MentionAutocompleteOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MentionAutocomplete.ts", - "source_location": "L31", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_mentionautocomplete_mentionautocompleteoptions", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "mentionautocompleteoptions" - }, - { - "label": "MentionSuggestion", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MentionAutocomplete.ts", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_mentionautocomplete_mentionsuggestion", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "mentionsuggestion" - }, - { - "label": "Segment", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/content-parser.ts", - "source_location": "L427", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_content_parser_segment", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "segment" - }, - { - "label": "TokenMatch", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/content-parser.ts", - "source_location": "L206", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_content_parser_tokenmatch", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "tokenmatch" - }, - { - "label": "MessageInputComponent", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MessageInput.ts", - "source_location": "L44", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_messageinput_messageinputcomponent", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "messageinputcomponent" - }, - { - "label": "WrapResult", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MessageInput.ts", - "source_location": "L70", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_messageinput_wrapresult", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "wrapresult" - }, - { - "label": "MessageListOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MessageList.ts", - "source_location": "L34", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_messagelist_messagelistoptions", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "messagelistoptions" - }, - { - "label": "MentionInfo", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/mentions.ts", - "source_location": "L32", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_mentions_mentioninfo", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "mentioninfo" - }, - { - "label": "CustomEmoji", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/emoji.store.ts", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_emoji_store_customemoji", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "customemoji" - }, - { - "label": "EmojiState", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/emoji.store.ts", - "source_location": "L27", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_emoji_store_emojistate", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "emojistate" - }, - { - "label": "CapturedGifPickerOptions", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-input.test.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_input_test_capturedgifpickeroptions", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "capturedgifpickeroptions" - }, - { - "label": "LiveKitSession", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L119", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": "livekitsession" - }, - { - "label": "RoomEventHandlers", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/roomEventHandlers.ts", - "source_location": "L59", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_roomeventhandlers_roomeventhandlers", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": "roomeventhandlers" - }, - { - "label": "ThemeName", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/helpers.ts", - "source_location": "L69", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_helpers_themename", - "community": 89, - "community_name": "themes.ts", - "norm_label": "themename" - }, - { - "label": "OwnCordTheme", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/themes.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_themes_owncordtheme", - "community": 89, - "community_name": "themes.ts", - "norm_label": "owncordtheme" - }, - { - "label": "DmProfileData", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/DmProfileSidebar.ts", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_dmprofilesidebar_dmprofiledata", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "dmprofiledata" - }, - { - "label": "DmProfileSidebarComponent", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/DmProfileSidebar.ts", - "source_location": "L47", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_dmprofilesidebar_dmprofilesidebarcomponent", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "dmprofilesidebarcomponent" - }, - { - "label": "DmProfileSidebarOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/DmProfileSidebar.ts", - "source_location": "L32", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_dmprofilesidebar_dmprofilesidebaroptions", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "dmprofilesidebaroptions" - }, - { - "label": "DmConversation", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/DmSidebar.ts", - "source_location": "L29", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_dmsidebar_dmconversation", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "dmconversation" - }, - { - "label": "DmParticipant", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/DmSidebar.ts", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_dmsidebar_dmparticipant", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "dmparticipant" - }, - { - "label": "DmSidebarOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/DmSidebar.ts", - "source_location": "L58", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_dmsidebar_dmsidebaroptions", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "dmsidebaroptions" - }, - { - "label": "OgMeta", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/embeds.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_embeds_ogmeta", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "ogmeta" - }, - { - "label": "AvatarOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/avatar.ts", - "source_location": "L41", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_avatar_avataroptions", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "avataroptions" - }, - { - "label": "AvatarSubject", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/avatar.ts", - "source_location": "L30", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_avatar_avatarsubject", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "avatarsubject" - }, - { - "label": "ContextMenuItem", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/context-menu.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_context_menu_contextmenuitem", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "contextmenuitem" - }, - { - "label": "ContextMenuOptions", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/context-menu.ts", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_context_menu_contextmenuoptions", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "contextmenuoptions" - }, - { - "label": "Attachment", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L116", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_attachment", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "attachment" - }, - { - "label": "CameraTrackState", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L204", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_cameratrackstate", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "cameratrackstate" - }, - { - "label": "GenerationGuarded", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L160", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_generationguarded", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "generationguarded" - }, - { - "label": "ScreenTrackState", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L323", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_screentrackstate", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "screentrackstate" - }, - { - "label": "StreamQuality", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L31", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_streamquality", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "streamquality" - }, - { - "label": "appendGroup()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L379", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_appendgroup", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "appendgroup()" - }, - { - "label": "assignableRoleNames()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_assignablerolenames", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "assignablerolenames()" - }, - { - "label": "closeActiveMenu()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L169", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_closeactivemenu", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "closeactivemenu()" - }, - { - "label": "closeActivePopup()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L176", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_closeactivepopup", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "closeactivepopup()" - }, - { - "label": "createMemberItem()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L190", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_creatememberitem", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "creatememberitem()" - }, - { - "label": "createMemberList()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L459", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_creatememberlist", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "creatememberlist()" - }, - { - "label": "destroy()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L166", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_destroy", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "destroy()" - }, - { - "label": "handleOutsideClick()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L183", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_handleoutsideclick", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "handleoutsideclick()" - }, - { - "label": "isAwayStatus()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L162", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_isawaystatus", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "isawaystatus()" - }, - { - "label": "isPresenceOnlyChange()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L410", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_ispresenceonlychange", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "ispresenceonlychange()" - }, - { - "label": "patchPresence()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L439", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_patchpresence", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "patchpresence()" - }, - { - "label": "renderList()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L331", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_renderlist", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "renderlist()" - }, - { - "label": "roleGroups()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L112", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_rolegroups", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "rolegroups()" - }, - { - "label": "statusColor()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L145", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_statuscolor", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "statuscolor()" - }, - { - "label": "statusPriority()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L126", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_statuspriority", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "statuspriority()" - }, - { - "label": "createTypingIndicator()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/TypingIndicator.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_typingindicator_createtypingindicator", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "createtypingindicator()" - }, - { - "label": "formatTypingText()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/TypingIndicator.ts", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_typingindicator_formattypingtext", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "formattypingtext()" - }, - { - "label": ".addCleanup()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/disposable.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_disposable_disposable_addcleanup", - "community": 0, - "community_name": "members.store.ts", - "norm_label": ".addcleanup()" - }, - { - "label": ".destroy()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/disposable.ts", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_disposable_disposable_destroy", - "community": 0, - "community_name": "members.store.ts", - "norm_label": ".destroy()" - }, - { - "label": ".onEvent()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/disposable.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_disposable_disposable_onevent", - "community": 0, - "community_name": "members.store.ts", - "norm_label": ".onevent()" - }, - { - "label": ".onInterval()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/disposable.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_disposable_disposable_oninterval", - "community": 0, - "community_name": "members.store.ts", - "norm_label": ".oninterval()" - }, - { - "label": ".onStoreChange()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/disposable.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_disposable_disposable_onstorechange", - "community": 0, - "community_name": "members.store.ts", - "norm_label": ".onstorechange()" - }, - { - "label": ".signal()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/disposable.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_disposable_disposable_signal", - "community": 0, - "community_name": "members.store.ts", - "norm_label": ".signal()" - }, - { - "label": "addMember()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/members.store.ts", - "source_location": "L89", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_members_store_addmember", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "addmember()" - }, - { - "label": "clearTyping()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/members.store.ts", - "source_location": "L216", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_members_store_cleartyping", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "cleartyping()" - }, - { - "label": "getOnlineMembers()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/members.store.ts", - "source_location": "L243", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_members_store_getonlinemembers", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "getonlinemembers()" - }, - { - "label": "getTypingUsers()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/members.store.ts", - "source_location": "L256", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_members_store_gettypingusers", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "gettypingusers()" - }, - { - "label": "memberDisplayName()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/members.store.ts", - "source_location": "L182", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_members_store_memberdisplayname", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "memberdisplayname()" - }, - { - "label": "removeMember()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/members.store.ts", - "source_location": "L109", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_members_store_removemember", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "removemember()" - }, - { - "label": "setMembers()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/members.store.ts", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_members_store_setmembers", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "setmembers()" - }, - { - "label": "setTyping()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/members.store.ts", - "source_location": "L189", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_members_store_settyping", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "settyping()" - }, - { - "label": "typingKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/members.store.ts", - "source_location": "L51", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_members_store_typingkey", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "typingkey()" - }, - { - "label": "updateMemberProfile()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/members.store.ts", - "source_location": "L139", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_members_store_updatememberprofile", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "updatememberprofile()" - }, - { - "label": "updateMemberRole()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/members.store.ts", - "source_location": "L118", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_members_store_updatememberrole", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "updatememberrole()" - }, - { - "label": "updatePresence()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/members.store.ts", - "source_location": "L161", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_members_store_updatepresence", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "updatepresence()" - }, - { - "label": "resetAllStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/test-utils.ts", - "source_location": "L88", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_test_utils_resetallstores", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "resetallstores()" - }, - { - "label": "waitForStoreUpdate()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/test-utils.ts", - "source_location": "L132", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_test_utils_waitforstoreupdate", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "waitforstoreupdate()" - }, - { - "label": "disconnect()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/chat.test.ts", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_chat_test_disconnect", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "disconnect()" - }, - { - "label": "makeMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/chat.test.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_chat_test_makemessage", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "makemessage()" - }, - { - "label": "observe()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/chat.test.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_chat_test_observe", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "observe()" - }, - { - "label": "resetStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/chat.test.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_chat_test_resetstores", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "resetstores()" - }, - { - "label": "seedMentionMembers()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/chat.test.ts", - "source_location": "L263", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_chat_test_seedmentionmembers", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "seedmentionmembers()" - }, - { - "label": "unobserve()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/chat.test.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_chat_test_unobserve", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "unobserve()" - }, - { - "label": "resetStore()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/components/TypingIndicator.test.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_components_typingindicator_test_resetstore", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "resetstore()" - }, - { - "label": "defaultOpts()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-list.test.ts", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_list_test_defaultopts", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "defaultopts()" - }, - { - "label": "makeMember()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-list.test.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_list_test_makemember", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "makemember()" - }, - { - "label": "openMenuAs()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-list.test.ts", - "source_location": "L369", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_list_test_openmenuas", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "openmenuas()" - }, - { - "label": "resetStore()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-list.test.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_list_test_resetstore", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "resetstore()" - }, - { - "label": "setTestMembers()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-list.test.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_list_test_settestmembers", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "settestmembers()" - }, - { - "label": "confirm()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-picker-group.test.ts", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_picker_group_test_confirm", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "confirm()" - }, - { - "label": "member()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-picker-group.test.ts", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_picker_group_test_member", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "member()" - }, - { - "label": "nameInput()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-picker-group.test.ts", - "source_location": "L60", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_picker_group_test_nameinput", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "nameinput()" - }, - { - "label": "open()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-picker-group.test.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_picker_group_test_open", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "open()" - }, - { - "label": "rows()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-picker-group.test.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_picker_group_test_rows", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "rows()" - }, - { - "label": "seedMembers()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-picker-group.test.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_picker_group_test_seedmembers", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "seedmembers()" - }, - { - "label": "makeMember()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-picker-modal.test.ts", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_picker_modal_test_makemember", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "makemember()" - }, - { - "label": "resetStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-picker-modal.test.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_picker_modal_test_resetstores", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "resetstores()" - }, - { - "label": "setCurrentUser()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-picker-modal.test.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_picker_modal_test_setcurrentuser", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "setcurrentuser()" - }, - { - "label": "setStoreMembers()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-picker-modal.test.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_picker_modal_test_setstoremembers", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "setstoremembers()" - }, - { - "label": "resetStore()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/members.store.test.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_members_store_test_resetstore", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "resetstore()" - }, - { - "label": "defaultOpts()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-member-section.test.ts", - "source_location": "L90", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_member_section_test_defaultopts", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "defaultopts()" - }, - { - "label": "getCapturedCallbacks()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-member-section.test.ts", - "source_location": "L392", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_member_section_test_getcapturedcallbacks", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "getcapturedcallbacks()" - }, - { - "label": "makeMember()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-member-section.test.ts", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_member_section_test_makemember", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "makemember()" - }, - { - "label": "resetStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-member-section.test.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_member_section_test_resetstores", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "resetstores()" - }, - { - "label": "setTestMembers()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-member-section.test.ts", - "source_location": "L82", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_member_section_test_settestmembers", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "settestmembers()" - }, - { - "label": "setTypingUsers()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/typing-indicator.test.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_typing_indicator_test_settypingusers", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "settypingusers()" - }, - { - "label": "appendBanFlow()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/AdminActions.ts", - "source_location": "L320", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_adminactions_appendbanflow", - "community": 1, - "community_name": "createElement", - "norm_label": "appendbanflow()" - }, - { - "label": "buildRow()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/CertMismatchModal.ts", - "source_location": "L372", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_certmismatchmodal_buildrow", - "community": 1, - "community_name": "createElement", - "norm_label": "buildrow()" - }, - { - "label": "createCertFirstUseModal()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/CertMismatchModal.ts", - "source_location": "L148", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_certmismatchmodal_createcertfirstusemodal", - "community": 1, - "community_name": "createElement", - "norm_label": "createcertfirstusemodal()" - }, - { - "label": "createCertMismatchModal()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/CertMismatchModal.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_certmismatchmodal_createcertmismatchmodal", - "community": 1, - "community_name": "createElement", - "norm_label": "createcertmismatchmodal()" - }, - { - "label": "createIdentityMismatchModal()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/CertMismatchModal.ts", - "source_location": "L267", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_certmismatchmodal_createidentitymismatchmodal", - "community": 1, - "community_name": "createElement", - "norm_label": "createidentitymismatchmodal()" - }, - { - "label": "createChannelSidebar()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ChannelSidebar.ts", - "source_location": "L735", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channelsidebar_createchannelsidebar", - "community": 1, - "community_name": "createElement", - "norm_label": "createchannelsidebar()" - }, - { - "label": "renderCategoryGroup()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ChannelSidebar.ts", - "source_location": "L617", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channelsidebar_rendercategorygroup", - "community": 1, - "community_name": "createElement", - "norm_label": "rendercategorygroup()" - }, - { - "label": ".destroy()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ConnectedOverlay.ts", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_connectedoverlay_connectedoverlaycontrol_destroy", - "community": 1, - "community_name": "createElement", - "norm_label": ".destroy()" - }, - { - "label": ".markReady()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ConnectedOverlay.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_connectedoverlay_connectedoverlaycontrol_markready", - "community": 1, - "community_name": "createElement", - "norm_label": ".markready()" - }, - { - "label": ".show()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ConnectedOverlay.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_connectedoverlay_connectedoverlaycontrol_show", - "community": 1, - "community_name": "createElement", - "norm_label": ".show()" - }, - { - "label": "createConnectedOverlay()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ConnectedOverlay.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_connectedoverlay_createconnectedoverlay", - "community": 1, - "community_name": "createElement", - "norm_label": "createconnectedoverlay()" - }, - { - "label": "serverIconColor()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ConnectedOverlay.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_connectedoverlay_servericoncolor", - "community": 1, - "community_name": "createElement", - "norm_label": "servericoncolor()" - }, - { - "label": "createCreateChannelModal()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/CreateChannelModal.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_createchannelmodal_createcreatechannelmodal", - "community": 1, - "community_name": "createElement", - "norm_label": "createcreatechannelmodal()" - }, - { - "label": "defaultTypeForCategory()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/CreateChannelModal.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_createchannelmodal_defaulttypeforcategory", - "community": 1, - "community_name": "createElement", - "norm_label": "defaulttypeforcategory()" - }, - { - "label": "createDeleteChannelModal()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/DeleteChannelModal.ts", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_deletechannelmodal_createdeletechannelmodal", - "community": 1, - "community_name": "createElement", - "norm_label": "createdeletechannelmodal()" - }, - { - "label": "createDmSidebar()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/DmSidebar.ts", - "source_location": "L279", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_dmsidebar_createdmsidebar", - "community": 1, - "community_name": "createElement", - "norm_label": "createdmsidebar()" - }, - { - "label": "renderDmItem()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/DmSidebar.ts", - "source_location": "L143", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_dmsidebar_renderdmitem", - "community": 1, - "community_name": "createElement", - "norm_label": "renderdmitem()" - }, - { - "label": "buildVoiceLimitField()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EditChannelModal.ts", - "source_location": "L126", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_editchannelmodal_buildvoicelimitfield", - "community": 1, - "community_name": "createElement", - "norm_label": "buildvoicelimitfield()" - }, - { - "label": "clampSlowMode()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EditChannelModal.ts", - "source_location": "L68", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_editchannelmodal_clampslowmode", - "community": 1, - "community_name": "createElement", - "norm_label": "clampslowmode()" - }, - { - "label": "clampVoiceLimit()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EditChannelModal.ts", - "source_location": "L80", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_editchannelmodal_clampvoicelimit", - "community": 1, - "community_name": "createElement", - "norm_label": "clampvoicelimit()" - }, - { - "label": "createEditChannelModal()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EditChannelModal.ts", - "source_location": "L147", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_editchannelmodal_createeditchannelmodal", - "community": 1, - "community_name": "createElement", - "norm_label": "createeditchannelmodal()" - }, - { - "label": "formatSlowMode()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EditChannelModal.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_editchannelmodal_formatslowmode", - "community": 1, - "community_name": "createElement", - "norm_label": "formatslowmode()" - }, - { - "label": "buildPreview()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EmojiAutocomplete.ts", - "source_location": "L68", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_emojiautocomplete_buildpreview", - "community": 1, - "community_name": "createElement", - "norm_label": "buildpreview()" - }, - { - "label": "renderEmojiRow()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EmojiAutocomplete.ts", - "source_location": "L137", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_emojiautocomplete_renderemojirow", - "community": 1, - "community_name": "createElement", - "norm_label": "renderemojirow()" - }, - { - "label": "createIncomingCallBanner()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/IncomingCallBanner.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_incomingcallbanner_createincomingcallbanner", - "community": 1, - "community_name": "createElement", - "norm_label": "createincomingcallbanner()" - }, - { - "label": "createInviteManager()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/InviteManager.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_invitemanager_createinvitemanager", - "community": 1, - "community_name": "createElement", - "norm_label": "createinvitemanager()" - }, - { - "label": "formatInviteInfo()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/InviteManager.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_invitemanager_formatinviteinfo", - "community": 1, - "community_name": "createElement", - "norm_label": "formatinviteinfo()" - }, - { - "label": ".onClose()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/InviteManager.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_invitemanager_invitemanageroptions_onclose", - "community": 1, - "community_name": "createElement", - "norm_label": ".onclose()" - }, - { - "label": ".onCopyLink()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/InviteManager.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_invitemanager_invitemanageroptions_oncopylink", - "community": 1, - "community_name": "createElement", - "norm_label": ".oncopylink()" - }, - { - "label": ".onCreateInvite()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/InviteManager.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_invitemanager_invitemanageroptions_oncreateinvite", - "community": 1, - "community_name": "createElement", - "norm_label": ".oncreateinvite()" - }, - { - "label": ".onError()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/InviteManager.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_invitemanager_invitemanageroptions_onerror", - "community": 1, - "community_name": "createElement", - "norm_label": ".onerror()" - }, - { - "label": ".onRevokeInvite()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/InviteManager.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_invitemanager_invitemanageroptions_onrevokeinvite", - "community": 1, - "community_name": "createElement", - "norm_label": ".onrevokeinvite()" - }, - { - "label": "maskCode()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/InviteManager.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_invitemanager_maskcode", - "community": 1, - "community_name": "createElement", - "norm_label": "maskcode()" - }, - { - "label": "applyOgMeta()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/embeds.ts", - "source_location": "L284", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_embeds_applyogmeta", - "community": 1, - "community_name": "createElement", - "norm_label": "applyogmeta()" - }, - { - "label": "clearEmbedCaches()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/embeds.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_embeds_clearembedcaches", - "community": 1, - "community_name": "createElement", - "norm_label": "clearembedcaches()" - }, - { - "label": "renderGenericLinkPreview()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/embeds.ts", - "source_location": "L235", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_embeds_rendergenericlinkpreview", - "community": 1, - "community_name": "createElement", - "norm_label": "rendergenericlinkpreview()" - }, - { - "label": "clearMediaCaches()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/media.ts", - "source_location": "L131", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_media_clearmediacaches", - "community": 1, - "community_name": "createElement", - "norm_label": "clearmediacaches()" - }, - { - "label": "renderYouTubeEmbed()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/media.ts", - "source_location": "L141", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_media_renderyoutubeembed", - "community": 1, - "community_name": "createElement", - "norm_label": "renderyoutubeembed()" - }, - { - "label": "buildReactionTooltip()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/reaction-tooltip.ts", - "source_location": "L180", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_reaction_tooltip_buildreactiontooltip", - "community": 1, - "community_name": "createElement", - "norm_label": "buildreactiontooltip()" - }, - { - "label": "createPinnedMessages()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/PinnedMessages.ts", - "source_location": "L98", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_pinnedmessages_createpinnedmessages", - "community": 1, - "community_name": "createElement", - "norm_label": "createpinnedmessages()" - }, - { - "label": "formatPinTime()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/PinnedMessages.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_pinnedmessages_formatpintime", - "community": 1, - "community_name": "createElement", - "norm_label": "formatpintime()" - }, - { - "label": "getInitial()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/PinnedMessages.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_pinnedmessages_getinitial", - "community": 1, - "community_name": "createElement", - "norm_label": "getinitial()" - }, - { - "label": "renderEmptyState()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/PinnedMessages.ts", - "source_location": "L87", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_pinnedmessages_renderemptystate", - "community": 1, - "community_name": "createElement", - "norm_label": "renderemptystate()" - }, - { - "label": "renderPinnedItem()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/PinnedMessages.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_pinnedmessages_renderpinneditem", - "community": 1, - "community_name": "createElement", - "norm_label": "renderpinneditem()" - }, - { - "label": "createQuickSwitcher()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/QuickSwitcher.ts", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_quickswitcher_createquickswitcher", - "community": 1, - "community_name": "createElement", - "norm_label": "createquickswitcher()" - }, - { - "label": "createQuickSwitchOverlay()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/QuickSwitchOverlay.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_quickswitchoverlay_createquickswitchoverlay", - "community": 1, - "community_name": "createElement", - "norm_label": "createquickswitchoverlay()" - }, - { - "label": "createSearchOverlay()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/SearchOverlay.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_searchoverlay_createsearchoverlay", - "community": 1, - "community_name": "createElement", - "norm_label": "createsearchoverlay()" - }, - { - "label": "buildAccessibilityTab()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccessibilityTab.ts", - "source_location": "L62", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accessibilitytab_buildaccessibilitytab", - "community": 1, - "community_name": "createElement", - "norm_label": "buildaccessibilitytab()" - }, - { - "label": "buildAccountTab()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccountTab.ts", - "source_location": "L1055", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accounttab_buildaccounttab", - "community": 1, - "community_name": "createElement", - "norm_label": "buildaccounttab()" - }, - { - "label": "buildAvatarUploader()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccountTab.ts", - "source_location": "L158", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accounttab_buildavataruploader", - "community": 1, - "community_name": "createElement", - "norm_label": "buildavataruploader()" - }, - { - "label": "buildDeleteAccountSection()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccountTab.ts", - "source_location": "L911", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accounttab_builddeleteaccountsection", - "community": 1, - "community_name": "createElement", - "norm_label": "builddeleteaccountsection()" - }, - { - "label": "buildPasswordSection()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccountTab.ts", - "source_location": "L322", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accounttab_buildpasswordsection", - "community": 1, - "community_name": "createElement", - "norm_label": "buildpasswordsection()" - }, - { - "label": "buildProfileCard()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccountTab.ts", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accounttab_buildprofilecard", - "community": 1, - "community_name": "createElement", - "norm_label": "buildprofilecard()" - }, - { - "label": "buildProfileFields()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccountTab.ts", - "source_location": "L230", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accounttab_buildprofilefields", - "community": 1, - "community_name": "createElement", - "norm_label": "buildprofilefields()" - }, - { - "label": "buildStatusSelector()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccountTab.ts", - "source_location": "L845", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accounttab_buildstatusselector", - "community": 1, - "community_name": "createElement", - "norm_label": "buildstatusselector()" - }, - { - "label": "buildTotpConfirmArea()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccountTab.ts", - "source_location": "L508", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accounttab_buildtotpconfirmarea", - "community": 1, - "community_name": "createElement", - "norm_label": "buildtotpconfirmarea()" - }, - { - "label": "buildTotpDisableView()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccountTab.ts", - "source_location": "L649", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accounttab_buildtotpdisableview", - "community": 1, - "community_name": "createElement", - "norm_label": "buildtotpdisableview()" - }, - { - "label": "buildTotpEnrollForm()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccountTab.ts", - "source_location": "L420", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accounttab_buildtotpenrollform", - "community": 1, - "community_name": "createElement", - "norm_label": "buildtotpenrollform()" - }, - { - "label": "buildTotpSection()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccountTab.ts", - "source_location": "L760", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accounttab_buildtotpsection", - "community": 1, - "community_name": "createElement", - "norm_label": "buildtotpsection()" - }, - { - "label": "measureImage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccountTab.ts", - "source_location": "L114", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accounttab_measureimage", - "community": 1, - "community_name": "createElement", - "norm_label": "measureimage()" - }, - { - "label": "paintAvatar()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccountTab.ts", - "source_location": "L87", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accounttab_paintavatar", - "community": 1, - "community_name": "createElement", - "norm_label": "paintavatar()" - }, - { - "label": "validateAvatarFile()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccountTab.ts", - "source_location": "L139", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accounttab_validateavatarfile", - "community": 1, - "community_name": "createElement", - "norm_label": "validateavatarfile()" - }, - { - "label": "buildAdvancedTab()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AdvancedTab.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_advancedtab_buildadvancedtab", - "community": 1, - "community_name": "createElement", - "norm_label": "buildadvancedtab()" - }, - { - "label": "buildAutostartRow()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AdvancedTab.ts", - "source_location": "L228", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_advancedtab_buildautostartrow", - "community": 1, - "community_name": "createElement", - "norm_label": "buildautostartrow()" - }, - { - "label": "buildCacheRow()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AdvancedTab.ts", - "source_location": "L286", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_advancedtab_buildcacherow", - "community": 1, - "community_name": "createElement", - "norm_label": "buildcacherow()" - }, - { - "label": "clearImageCache()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AdvancedTab.ts", - "source_location": "L313", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_advancedtab_clearimagecache", - "community": 1, - "community_name": "createElement", - "norm_label": "clearimagecache()" - }, - { - "label": "clearLocalStoragePreservingUserData()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AdvancedTab.ts", - "source_location": "L352", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_advancedtab_clearlocalstoragepreservinguserdata", - "community": 1, - "community_name": "createElement", - "norm_label": "clearlocalstoragepreservinguserdata()" - }, - { - "label": "clearLogFiles()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AdvancedTab.ts", - "source_location": "L372", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_advancedtab_clearlogfiles", - "community": 1, - "community_name": "createElement", - "norm_label": "clearlogfiles()" - }, - { - "label": "isMissingPathError()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AdvancedTab.ts", - "source_location": "L392", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_advancedtab_ismissingpatherror", - "community": 1, - "community_name": "createElement", - "norm_label": "ismissingpatherror()" - }, - { - "label": "buildAppearanceTab()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AppearanceTab.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_appearancetab_buildappearancetab", - "community": 1, - "community_name": "createElement", - "norm_label": "buildappearancetab()" - }, - { - "label": "getDefaultAccent()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AppearanceTab.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_appearancetab_getdefaultaccent", - "community": 1, - "community_name": "createElement", - "norm_label": "getdefaultaccent()" - }, - { - "label": "hexToRgb()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AppearanceTab.ts", - "source_location": "L245", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_appearancetab_hextorgb", - "community": 1, - "community_name": "createElement", - "norm_label": "hextorgb()" - }, - { - "label": "createToggle()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/helpers.ts", - "source_location": "L87", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_helpers_createtoggle", - "community": 1, - "community_name": "createElement", - "norm_label": "createtoggle()" - }, - { - "label": "buildKeybindsTab()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/KeybindsTab.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_keybindstab_buildkeybindstab", - "community": 1, - "community_name": "createElement", - "norm_label": "buildkeybindstab()" - }, - { - "label": "buildMutedChannelsSection()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/NotificationsTab.ts", - "source_location": "L83", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_notificationstab_buildmutedchannelssection", - "community": 1, - "community_name": "createElement", - "norm_label": "buildmutedchannelssection()" - }, - { - "label": "buildNotificationsTab()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/NotificationsTab.ts", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_notificationstab_buildnotificationstab", - "community": 1, - "community_name": "createElement", - "norm_label": "buildnotificationstab()" - }, - { - "label": "mutedChannelName()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/NotificationsTab.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_notificationstab_mutedchannelname", - "community": 1, - "community_name": "createElement", - "norm_label": "mutedchannelname()" - }, - { - "label": "buildTextImagesTab()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/TextImagesTab.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_textimagestab_buildtextimagestab", - "community": 1, - "community_name": "createElement", - "norm_label": "buildtextimagestab()" - }, - { - "label": "buildVoiceAudioTabInner()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/VoiceAudioTab.ts", - "source_location": "L86", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_voiceaudiotab_buildvoiceaudiotabinner", - "community": 1, - "community_name": "createElement", - "norm_label": "buildvoiceaudiotabinner()" - }, - { - "label": "createVoiceAudioTab()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/VoiceAudioTab.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_voiceaudiotab_createvoiceaudiotab", - "community": 1, - "community_name": "createElement", - "norm_label": "createvoiceaudiotab()" - }, - { - "label": ".build()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/VoiceAudioTab.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_voiceaudiotab_voiceaudiotabhandle_build", - "community": 1, - "community_name": "createElement", - "norm_label": ".build()" - }, - { - "label": ".cleanup()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/VoiceAudioTab.ts", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_voiceaudiotab_voiceaudiotabhandle_cleanup", - "community": 1, - "community_name": "createElement", - "norm_label": ".cleanup()" - }, - { - "label": "createSettingsOverlay()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/SettingsOverlay.ts", - "source_location": "L86", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settingsoverlay_createsettingsoverlay", - "community": 1, - "community_name": "createElement", - "norm_label": "createsettingsoverlay()" - }, - { - "label": ".onChangePassword()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/SettingsOverlay.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settingsoverlay_settingsoverlayoptions_onchangepassword", - "community": 1, - "community_name": "createElement", - "norm_label": ".onchangepassword()" - }, - { - "label": ".onClose()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/SettingsOverlay.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settingsoverlay_settingsoverlayoptions_onclose", - "community": 1, - "community_name": "createElement", - "norm_label": ".onclose()" - }, - { - "label": ".onConfirmTotp()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/SettingsOverlay.ts", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settingsoverlay_settingsoverlayoptions_onconfirmtotp", - "community": 1, - "community_name": "createElement", - "norm_label": ".onconfirmtotp()" - }, - { - "label": ".onDeleteAccount()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/SettingsOverlay.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settingsoverlay_settingsoverlayoptions_ondeleteaccount", - "community": 1, - "community_name": "createElement", - "norm_label": ".ondeleteaccount()" - }, - { - "label": ".onDisableTotp()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/SettingsOverlay.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settingsoverlay_settingsoverlayoptions_ondisabletotp", - "community": 1, - "community_name": "createElement", - "norm_label": ".ondisabletotp()" - }, - { - "label": ".onEnableTotp()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/SettingsOverlay.ts", - "source_location": "L47", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settingsoverlay_settingsoverlayoptions_onenabletotp", - "community": 1, - "community_name": "createElement", - "norm_label": ".onenabletotp()" - }, - { - "label": ".onLogout()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/SettingsOverlay.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settingsoverlay_settingsoverlayoptions_onlogout", - "community": 1, - "community_name": "createElement", - "norm_label": ".onlogout()" - }, - { - "label": ".onStatusChange()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/SettingsOverlay.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settingsoverlay_settingsoverlayoptions_onstatuschange", - "community": 1, - "community_name": "createElement", - "norm_label": ".onstatuschange()" - }, - { - "label": ".onUpdateProfile()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/SettingsOverlay.ts", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settingsoverlay_settingsoverlayoptions_onupdateprofile", - "community": 1, - "community_name": "createElement", - "norm_label": ".onupdateprofile()" - }, - { - "label": ".onUploadAvatar()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/SettingsOverlay.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settingsoverlay_settingsoverlayoptions_onuploadavatar", - "community": 1, - "community_name": "createElement", - "norm_label": ".onuploadavatar()" - }, - { - "label": "tabId()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/SettingsOverlay.ts", - "source_location": "L78", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settingsoverlay_tabid", - "community": 1, - "community_name": "createElement", - "norm_label": "tabid()" - }, - { - "label": "applyDialogSemantics()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/a11y.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_a11y_applydialogsemantics", - "community": 1, - "community_name": "createElement", - "norm_label": "applydialogsemantics()" - }, - { - "label": "focusDialog()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/a11y.ts", - "source_location": "L169", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_a11y_focusdialog", - "community": 1, - "community_name": "createElement", - "norm_label": "focusdialog()" - }, - { - "label": "isFocusable()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/a11y.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_a11y_isfocusable", - "community": 1, - "community_name": "createElement", - "norm_label": "isfocusable()" - }, - { - "label": "queryFocusable()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/a11y.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_a11y_queryfocusable", - "community": 1, - "community_name": "createElement", - "norm_label": "queryfocusable()" - }, - { - "label": "trapFocus()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/a11y.ts", - "source_location": "L68", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_a11y_trapfocus", - "community": 1, - "community_name": "createElement", - "norm_label": "trapfocus()" - }, - { - "label": "getSavedUserVolume()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_getsaveduservolume", - "community": 1, - "community_name": "createElement", - "norm_label": "getsaveduservolume()" - }, - { - "label": "avatarInitial()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/avatar.ts", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_avatar_avatarinitial", - "community": 1, - "community_name": "createElement", - "norm_label": "avatarinitial()" - }, - { - "label": "appendChildren()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/dom.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_dom_appendchildren", - "community": 1, - "community_name": "createElement", - "norm_label": "appendchildren()" - }, - { - "label": "clearChildren()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/dom.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_dom_clearchildren", - "community": 1, - "community_name": "createElement", - "norm_label": "clearchildren()" - }, - { - "label": "createElement()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/dom.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_dom_createelement", - "community": 1, - "community_name": "createElement", - "norm_label": "createelement()" - }, - { - "label": "escapeHtml()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/dom.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_dom_escapehtml", - "community": 1, - "community_name": "createElement", - "norm_label": "escapehtml()" - }, - { - "label": "qs()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/dom.ts", - "source_location": "L82", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_dom_qs", - "community": 1, - "community_name": "createElement", - "norm_label": "qs()" - }, - { - "label": "qsa()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/dom.ts", - "source_location": "L89", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_dom_qsa", - "community": 1, - "community_name": "createElement", - "norm_label": "qsa()" - }, - { - "label": "setText()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/dom.ts", - "source_location": "L47", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_dom_settext", - "community": 1, - "community_name": "createElement", - "norm_label": "settext()" - }, - { - "label": "createIcon()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/icons.ts", - "source_location": "L236", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_icons_createicon", - "community": 1, - "community_name": "createElement", - "norm_label": "createicon()" - }, - { - "label": "clearPendingPersistedLogs()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logPersistence.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logpersistence_clearpendingpersistedlogs", - "community": 1, - "community_name": "createElement", - "norm_label": "clearpendingpersistedlogs()" - }, - { - "label": "createModal()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/modalFactory.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_modalfactory_createmodal", - "community": 1, - "community_name": "createElement", - "norm_label": "createmodal()" - }, - { - "label": "createPromptModal()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/modalFactory.ts", - "source_location": "L185", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_modalfactory_createpromptmodal", - "community": 1, - "community_name": "createElement", - "norm_label": "createpromptmodal()" - }, - { - "label": ".destroy()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/modalFactory.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_modalfactory_modalinstance_destroy", - "community": 1, - "community_name": "createElement", - "norm_label": ".destroy()" - }, - { - "label": "loadPref()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/preferences.ts", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_preferences_loadpref", - "community": 1, - "community_name": "createElement", - "norm_label": "loadpref()" - }, - { - "label": "savePref()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/preferences.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_preferences_savepref", - "community": 1, - "community_name": "createElement", - "norm_label": "savepref()" - }, - { - "label": "captureKeyPress()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ptt.ts", - "source_location": "L299", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ptt_capturekeypress", - "community": 1, - "community_name": "createElement", - "norm_label": "capturekeypress()" - }, - { - "label": "installGlobalErrorHandlers()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/safe-render.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_safe_render_installglobalerrorhandlers", - "community": 1, - "community_name": "createElement", - "norm_label": "installglobalerrorhandlers()" - }, - { - "label": ".destroy()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/safe-render.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_safe_render_mountablecomponent_destroy", - "community": 1, - "community_name": "createElement", - "norm_label": ".destroy()" - }, - { - "label": ".mount()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/safe-render.ts", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_safe_render_mountablecomponent_mount", - "community": 1, - "community_name": "createElement", - "norm_label": ".mount()" - }, - { - "label": "renderFallback()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/safe-render.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_safe_render_renderfallback", - "community": 1, - "community_name": "createElement", - "norm_label": "renderfallback()" - }, - { - "label": "safeMount()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/safe-render.ts", - "source_location": "L19", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_safe_render_safemount", - "community": 1, - "community_name": "createElement", - "norm_label": "safemount()" - }, - { - "label": "createLoginForm()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L78", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform_createloginform", - "community": 1, - "community_name": "createElement", - "norm_label": "createloginform()" - }, - { - "label": "createServerPanel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/ServerPanel.ts", - "source_location": "L71", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_serverpanel_createserverpanel", - "community": 1, - "community_name": "createElement", - "norm_label": "createserverpanel()" - }, - { - "label": "getIconColor()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/ServerPanel.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_serverpanel_geticoncolor", - "community": 1, - "community_name": "createElement", - "norm_label": "geticoncolor()" - }, - { - "label": "getIconInitials()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/ServerPanel.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_serverpanel_geticoninitials", - "community": 1, - "community_name": "createElement", - "norm_label": "geticoninitials()" - }, - { - "label": "buildChatHeader()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ChatHeader.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_chatheader_buildchatheader", - "community": 1, - "community_name": "createElement", - "norm_label": "buildchatheader()" - }, - { - "label": "updateChatHeaderForDm()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ChatHeader.ts", - "source_location": "L120", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_chatheader_updatechatheaderfordm", - "community": 1, - "community_name": "createElement", - "norm_label": "updatechatheaderfordm()" - }, - { - "label": "createMemberPickerModal()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/MemberPickerModal.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_memberpickermodal_creatememberpickermodal", - "community": 1, - "community_name": "createElement", - "norm_label": "creatememberpickermodal()" - }, - { - "label": "createSidebarDmSection()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/SidebarDmSection.ts", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_sidebardmsection_createsidebardmsection", - "community": 1, - "community_name": "createElement", - "norm_label": "createsidebardmsection()" - }, - { - "label": "getKnownCategories()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/channels.store.ts", - "source_location": "L301", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_channels_store_getknowncategories", - "community": 1, - "community_name": "createElement", - "norm_label": "getknowncategories()" - }, - { - "label": "buildDialog()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/a11y.test.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_a11y_test_builddialog", - "community": 1, - "community_name": "createElement", - "norm_label": "builddialog()" - }, - { - "label": "tab()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/a11y.test.ts", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_a11y_test_tab", - "community": 1, - "community_name": "createElement", - "norm_label": "tab()" - }, - { - "label": "clickToggle()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/accessibility-tab.test.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_accessibility_tab_test_clicktoggle", - "community": 1, - "community_name": "createElement", - "norm_label": "clicktoggle()" - }, - { - "label": "getToggle()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/accessibility-tab.test.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_accessibility_tab_test_gettoggle", - "community": 1, - "community_name": "createElement", - "norm_label": "gettoggle()" - }, - { - "label": "makeOptions()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/account-tab-profile.test.ts", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_account_tab_profile_test_makeoptions", - "community": 1, - "community_name": "createElement", - "norm_label": "makeoptions()" - }, - { - "label": "setUser()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/account-tab-profile.test.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_account_tab_profile_test_setuser", - "community": 1, - "community_name": "createElement", - "norm_label": "setuser()" - }, - { - "label": "flush()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/advanced-tab.test.ts", - "source_location": "L179", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_advanced_tab_test_flush", - "community": 1, - "community_name": "createElement", - "norm_label": "flush()" - }, - { - "label": "getActionBtn()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/advanced-tab.test.ts", - "source_location": "L170", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_advanced_tab_test_getactionbtn", - "community": 1, - "community_name": "createElement", - "norm_label": "getactionbtn()" - }, - { - "label": "getAutostartToggle()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/advanced-tab.test.ts", - "source_location": "L762", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_advanced_tab_test_getautostarttoggle", - "community": 1, - "community_name": "createElement", - "norm_label": "getautostarttoggle()" - }, - { - "label": "getClearAllBtn()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/advanced-tab.test.ts", - "source_location": "L159", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_advanced_tab_test_getclearallbtn", - "community": 1, - "community_name": "createElement", - "norm_label": "getclearallbtn()" - }, - { - "label": "tick()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/advanced-tab.test.ts", - "source_location": "L773", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_advanced_tab_test_tick", - "community": 1, - "community_name": "createElement", - "norm_label": "tick()" - }, - { - "label": "makeOverlay()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/connected-overlay.test.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_connected_overlay_test_makeoverlay", - "community": 1, - "community_name": "createElement", - "norm_label": "makeoverlay()" - }, - { - "label": "makeModal()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/create-channel-modal.test.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_create_channel_modal_test_makemodal", - "community": 1, - "community_name": "createElement", - "norm_label": "makemodal()" - }, - { - "label": "makeModal()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/delete-channel-modal.test.ts", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_delete_channel_modal_test_makemodal", - "community": 1, - "community_name": "createElement", - "norm_label": "makemodal()" - }, - { - "label": "makeModal()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/edit-channel-modal.test.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_edit_channel_modal_test_makemodal", - "community": 1, - "community_name": "createElement", - "norm_label": "makemodal()" - }, - { - "label": "nsfwBox()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/edit-channel-modal.test.ts", - "source_location": "L388", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_edit_channel_modal_test_nsfwbox", - "community": 1, - "community_name": "createElement", - "norm_label": "nsfwbox()" - }, - { - "label": "slowSelect()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/edit-channel-modal.test.ts", - "source_location": "L329", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_edit_channel_modal_test_slowselect", - "community": 1, - "community_name": "createElement", - "norm_label": "slowselect()" - }, - { - "label": "mountModal()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/identity-mismatch-modal.test.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_identity_mismatch_modal_test_mountmodal", - "community": 1, - "community_name": "createElement", - "norm_label": "mountmodal()" - }, - { - "label": "makeInvite()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/invite-manager.test.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_invite_manager_test_makeinvite", - "community": 1, - "community_name": "createElement", - "norm_label": "makeinvite()" - }, - { - "label": "makeOptions()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/invite-manager.test.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_invite_manager_test_makeoptions", - "community": 1, - "community_name": "createElement", - "norm_label": "makeoptions()" - }, - { - "label": "clickCancel()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/modal-factory.test.ts", - "source_location": "L247", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_modal_factory_test_clickcancel", - "community": 1, - "community_name": "createElement", - "norm_label": "clickcancel()" - }, - { - "label": "clickConfirm()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/modal-factory.test.ts", - "source_location": "L243", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_modal_factory_test_clickconfirm", - "community": 1, - "community_name": "createElement", - "norm_label": "clickconfirm()" - }, - { - "label": "getInput()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/modal-factory.test.ts", - "source_location": "L237", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_modal_factory_test_getinput", - "community": 1, - "community_name": "createElement", - "norm_label": "getinput()" - }, - { - "label": "makePanel()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/pinned-messages.test.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_pinned_messages_test_makepanel", - "community": 1, - "community_name": "createElement", - "norm_label": "makepanel()" - }, - { - "label": "mount()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/safe-render.test.ts", - "source_location": "L19", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_safe_render_test_mount", - "community": 1, - "community_name": "createElement", - "norm_label": "mount()" - }, - { - "label": "clickEl()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/settings-overlay.test.ts", - "source_location": "L59", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_settings_overlay_test_clickel", - "community": 1, - "community_name": "createElement", - "norm_label": "clickel()" - }, - { - "label": "getTab()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/settings-overlay.test.ts", - "source_location": "L64", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_settings_overlay_test_gettab", - "community": 1, - "community_name": "createElement", - "norm_label": "gettab()" - }, - { - "label": "makeOptions()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/totp-settings.test.ts", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_totp_settings_test_makeoptions", - "community": 1, - "community_name": "createElement", - "norm_label": "makeoptions()" - }, - { - "label": "createRNNoiseProcessor()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/noise-suppression.ts", - "source_location": "L236", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_noise_suppression_creaternnoiseprocessor", - "community": 100, - "community_name": "noise-suppression.ts", - "norm_label": "creaternnoiseprocessor()" - }, - { - "label": "createScriptProcessorPipeline()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/noise-suppression.ts", - "source_location": "L122", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_noise_suppression_createscriptprocessorpipeline", - "community": 100, - "community_name": "noise-suppression.ts", - "norm_label": "createscriptprocessorpipeline()" - }, - { - "label": "createWorkletPipeline()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/noise-suppression.ts", - "source_location": "L76", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_noise_suppression_createworkletpipeline", - "community": 100, - "community_name": "noise-suppression.ts", - "norm_label": "createworkletpipeline()" - }, - { - "label": "loadRNNoise()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/noise-suppression.ts", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_noise_suppression_loadrnnoise", - "community": 100, - "community_name": "noise-suppression.ts", - "norm_label": "loadrnnoise()" - }, - { - "label": ".destroy()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/noise-suppression.ts", - "source_location": "L72", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_noise_suppression_processingpipeline_destroy", - "community": 100, - "community_name": "noise-suppression.ts", - "norm_label": ".destroy()" - }, - { - "label": "supportsAudioWorklet()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/noise-suppression.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_noise_suppression_supportsaudioworklet", - "community": 100, - "community_name": "noise-suppression.ts", - "norm_label": "supportsaudioworklet()" - }, - { - "label": "stubAudioContext()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/audio-pipeline-core.test.ts", - "source_location": "L568", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_audio_pipeline_core_test_stubaudiocontext", - "community": 100, - "community_name": "noise-suppression.ts", - "norm_label": "stubaudiocontext()" - }, - { - "label": ".onCreate()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/AdminActions.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_adminactions_channelcontextmenuoptions_oncreate", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": ".oncreate()" - }, - { - "label": ".onDelete()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/AdminActions.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_adminactions_channelcontextmenuoptions_ondelete", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": ".ondelete()" - }, - { - "label": ".onEdit()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/AdminActions.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_adminactions_channelcontextmenuoptions_onedit", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": ".onedit()" - }, - { - "label": ".onPurge()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/AdminActions.ts", - "source_location": "L62", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_adminactions_channelcontextmenuoptions_onpurge", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": ".onpurge()" - }, - { - "label": ".destroy()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/AdminActions.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_adminactions_contextmenuresult_destroy", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": ".destroy()" - }, - { - "label": "createChannelContextMenu()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/AdminActions.ts", - "source_location": "L421", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_adminactions_createchannelcontextmenu", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": "createchannelcontextmenu()" - }, - { - "label": "createMemberContextMenu()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/AdminActions.ts", - "source_location": "L163", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_adminactions_createmembercontextmenu", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": "createmembercontextmenu()" - }, - { - "label": "createMenuItem()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/AdminActions.ts", - "source_location": "L74", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_adminactions_createmenuitem", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": "createmenuitem()" - }, - { - "label": "createSeparator()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/AdminActions.ts", - "source_location": "L85", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_adminactions_createseparator", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": "createseparator()" - }, - { - "label": ".onBan()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/AdminActions.ts", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_adminactions_membercontextmenuoptions_onban", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": ".onban()" - }, - { - "label": ".onChangeRole()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/AdminActions.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_adminactions_membercontextmenuoptions_onchangerole", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": ".onchangerole()" - }, - { - "label": ".onKick()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/AdminActions.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_adminactions_membercontextmenuoptions_onkick", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": ".onkick()" - }, - { - "label": ".onToggleBlock()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/AdminActions.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_adminactions_membercontextmenuoptions_ontoggleblock", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": ".ontoggleblock()" - }, - { - "label": "withConfirmation()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/AdminActions.ts", - "source_location": "L99", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_adminactions_withconfirmation", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": "withconfirmation()" - }, - { - "label": "appendPurgeSection()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/purge-prompt.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_purge_prompt_appendpurgesection", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": "appendpurgesection()" - }, - { - "label": "clampPurgeCount()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/purge-prompt.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_purge_prompt_clamppurgecount", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": "clamppurgecount()" - }, - { - "label": "makeMenu()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/admin-actions.test.ts", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_admin_actions_test_makemenu", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": "makemenu()" - }, - { - "label": "topLevelLabels()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/admin-actions.test.ts", - "source_location": "L334", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_admin_actions_test_toplevellabels", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": "toplevellabels()" - }, - { - "label": "captureStaticFrame()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/media-visibility.ts", - "source_location": "L47", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_media_visibility_capturestaticframe", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "capturestaticframe()" - }, - { - "label": "createPlayPauseButton()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/media-visibility.ts", - "source_location": "L92", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_media_visibility_createplaypausebutton", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "createplaypausebutton()" - }, - { - "label": "destroyObserver()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/media-visibility.ts", - "source_location": "L308", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_media_visibility_destroyobserver", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "destroyobserver()" - }, - { - "label": "ensureVisibilityListener()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/media-visibility.ts", - "source_location": "L167", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_media_visibility_ensurevisibilitylistener", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "ensurevisibilitylistener()" - }, - { - "label": "freezeImage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/media-visibility.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_media_visibility_freezeimage", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "freezeimage()" - }, - { - "label": "getObserver()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/media-visibility.ts", - "source_location": "L137", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_media_visibility_getobserver", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "getobserver()" - }, - { - "label": "observeMedia()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/media-visibility.ts", - "source_location": "L203", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_media_visibility_observemedia", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "observemedia()" - }, - { - "label": "pauseAllMedia()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/media-visibility.ts", - "source_location": "L278", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_media_visibility_pauseallmedia", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "pauseallmedia()" - }, - { - "label": "resumeVisibleMedia()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/media-visibility.ts", - "source_location": "L293", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_media_visibility_resumevisiblemedia", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "resumevisiblemedia()" - }, - { - "label": "startAutoTimer()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/media-visibility.ts", - "source_location": "L121", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_media_visibility_startautotimer", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "startautotimer()" - }, - { - "label": "unfreezeImage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/media-visibility.ts", - "source_location": "L79", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_media_visibility_unfreezeimage", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "unfreezeimage()" - }, - { - "label": "updateButton()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/media-visibility.ts", - "source_location": "L103", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_media_visibility_updatebutton", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "updatebutton()" - }, - { - "label": "createFakeImg()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/media-visibility.test.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_media_visibility_test_createfakeimg", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "createfakeimg()" - }, - { - "label": "createWrapper()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/media-visibility.test.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_media_visibility_test_createwrapper", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "createwrapper()" - }, - { - "label": "fireIntersection()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/media-visibility.test.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_media_visibility_test_fireintersection", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "fireintersection()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/media-visibility.test.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_media_visibility_test_mockintersectionobserver_constructor", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": ".constructor()" - }, - { - "label": ".takeRecords()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/media-visibility.test.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_media_visibility_test_mockintersectionobserver_takerecords", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": ".takerecords()" - }, - { - "label": "setupCanvasMocks()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/media-visibility.test.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_media_visibility_test_setupcanvasmocks", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "setupcanvasmocks()" - }, - { - "label": "createGifPicker()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/GifPicker.ts", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_gifpicker_creategifpicker", - "community": 12, - "community_name": "types.ts", - "norm_label": "creategifpicker()" - }, - { - "label": "enableRovingNavigation()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/a11y.ts", - "source_location": "L121", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_a11y_enablerovingnavigation", - "community": 12, - "community_name": "types.ts", - "norm_label": "enablerovingnavigation()" - }, - { - "label": "setRovingTabindex()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/a11y.ts", - "source_location": "L102", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_a11y_setrovingtabindex", - "community": 12, - "community_name": "types.ts", - "norm_label": "setrovingtabindex()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/api.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_api_apiclienterror_constructor", - "community": 12, - "community_name": "types.ts", - "norm_label": ".constructor()" - }, - { - "label": "createApiClient()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/api.ts", - "source_location": "L80", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_api_createapiclient", - "community": 12, - "community_name": "types.ts", - "norm_label": "createapiclient()" - }, - { - "label": "getTrendingGifs()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/gifProvider.ts", - "source_location": "L74", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_gifprovider_gettrendinggifs", - "community": 12, - "community_name": "types.ts", - "norm_label": "gettrendinggifs()" - }, - { - "label": "isAllowedGifUrl()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/gifProvider.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_gifprovider_isallowedgifurl", - "community": 12, - "community_name": "types.ts", - "norm_label": "isallowedgifurl()" - }, - { - "label": "parseResults()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/gifProvider.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_gifprovider_parseresults", - "community": 12, - "community_name": "types.ts", - "norm_label": "parseresults()" - }, - { - "label": "searchGifs()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/gifProvider.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_gifprovider_searchgifs", - "community": 12, - "community_name": "types.ts", - "norm_label": "searchgifs()" - }, - { - "label": "isValidHost()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/hostValidation.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_hostvalidation_isvalidhost", - "community": 12, - "community_name": "types.ts", - "norm_label": "isvalidhost()" - }, - { - "label": "makeAttachment()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/fixtures.ts", - "source_location": "L110", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_fixtures_makeattachment", - "community": 12, - "community_name": "types.ts", - "norm_label": "makeattachment()" - }, - { - "label": "makeChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/fixtures.ts", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_fixtures_makechannel", - "community": 12, - "community_name": "types.ts", - "norm_label": "makechannel()" - }, - { - "label": "makeChatMessagePayload()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/fixtures.ts", - "source_location": "L122", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_fixtures_makechatmessagepayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "makechatmessagepayload()" - }, - { - "label": "makeMember()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/fixtures.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_fixtures_makemember", - "community": 12, - "community_name": "types.ts", - "norm_label": "makemember()" - }, - { - "label": "makeMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/fixtures.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_fixtures_makemessage", - "community": 12, - "community_name": "types.ts", - "norm_label": "makemessage()" - }, - { - "label": "makeMessageUser()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/fixtures.ts", - "source_location": "L100", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_fixtures_makemessageuser", - "community": 12, - "community_name": "types.ts", - "norm_label": "makemessageuser()" - }, - { - "label": "makeReaction()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/fixtures.ts", - "source_location": "L71", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_fixtures_makereaction", - "community": 12, - "community_name": "types.ts", - "norm_label": "makereaction()" - }, - { - "label": "makeReadyMember()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/fixtures.ts", - "source_location": "L138", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_fixtures_makereadymember", - "community": 12, - "community_name": "types.ts", - "norm_label": "makereadymember()" - }, - { - "label": "makeReadyPayload()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/fixtures.ts", - "source_location": "L176", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_fixtures_makereadypayload", - "community": 12, - "community_name": "types.ts", - "norm_label": "makereadypayload()" - }, - { - "label": "makeReadyRole()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/fixtures.ts", - "source_location": "L161", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_fixtures_makereadyrole", - "community": 12, - "community_name": "types.ts", - "norm_label": "makereadyrole()" - }, - { - "label": "makeReadyVoiceState()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/fixtures.ts", - "source_location": "L150", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_fixtures_makereadyvoicestate", - "community": 12, - "community_name": "types.ts", - "norm_label": "makereadyvoicestate()" - }, - { - "label": "makeVoiceState()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/fixtures.ts", - "source_location": "L81", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_fixtures_makevoicestate", - "community": 12, - "community_name": "types.ts", - "norm_label": "makevoicestate()" - }, - { - "label": "brokenJsonErrorResponse()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/api.test.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_api_test_brokenjsonerrorresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "brokenjsonerrorresponse()" - }, - { - "label": "errorResponse()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/api.test.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_api_test_errorresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "errorresponse()" - }, - { - "label": "fetchCallOpts()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/api.test.ts", - "source_location": "L75", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_api_test_fetchcallopts", - "community": 12, - "community_name": "types.ts", - "norm_label": "fetchcallopts()" - }, - { - "label": "fetchCallUrl()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/api.test.ts", - "source_location": "L72", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_api_test_fetchcallurl", - "community": 12, - "community_name": "types.ts", - "norm_label": "fetchcallurl()" - }, - { - "label": "jsonResponse()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/api.test.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_api_test_jsonresponse", - "community": 12, - "community_name": "types.ts", - "norm_label": "jsonresponse()" - }, - { - "label": "makeGif()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/gif-picker.test.ts", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_gif_picker_test_makegif", - "community": 12, - "community_name": "types.ts", - "norm_label": "makegif()" - }, - { - "label": "makePicker()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/gif-picker.test.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_gif_picker_test_makepicker", - "community": 12, - "community_name": "types.ts", - "norm_label": "makepicker()" - }, - { - "label": "gifResult()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/gif-provider.test.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_gif_provider_test_gifresult", - "community": 12, - "community_name": "types.ts", - "norm_label": "gifresult()" - }, - { - "label": "response()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/gif-provider.test.ts", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_gif_provider_test_response", - "community": 12, - "community_name": "types.ts", - "norm_label": "response()" - }, - { - "label": "makeOptions()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/search-overlay.test.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_search_overlay_test_makeoptions", - "community": 12, - "community_name": "types.ts", - "norm_label": "makeoptions()" - }, - { - "label": "makeResult()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/search-overlay.test.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_search_overlay_test_makeresult", - "community": 12, - "community_name": "types.ts", - "norm_label": "makeresult()" - }, - { - "label": "collectAllStats()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/connectionStats.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_connectionstats_collectallstats", - "community": 123, - "community_name": "connectionStats.ts", - "norm_label": "collectallstats()" - }, - { - "label": ".getStats()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/connectionStats.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_connectionstats_connectionstatspoller_getstats", - "community": 123, - "community_name": "connectionStats.ts", - "norm_label": ".getstats()" - }, - { - "label": ".onQualityChanged()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/connectionStats.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_connectionstats_connectionstatspoller_onqualitychanged", - "community": 123, - "community_name": "connectionStats.ts", - "norm_label": ".onqualitychanged()" - }, - { - "label": ".onUpdate()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/connectionStats.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_connectionstats_connectionstatspoller_onupdate", - "community": 123, - "community_name": "connectionStats.ts", - "norm_label": ".onupdate()" - }, - { - "label": ".start()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/connectionStats.ts", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_connectionstats_connectionstatspoller_start", - "community": 123, - "community_name": "connectionStats.ts", - "norm_label": ".start()" - }, - { - "label": ".stop()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/connectionStats.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_connectionstats_connectionstatspoller_stop", - "community": 123, - "community_name": "connectionStats.ts", - "norm_label": ".stop()" - }, - { - "label": "createConnectionStatsPoller()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/connectionStats.ts", - "source_location": "L125", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_connectionstats_createconnectionstatspoller", - "community": 123, - "community_name": "connectionStats.ts", - "norm_label": "createconnectionstatspoller()" - }, - { - "label": "extractMetrics()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/connectionStats.ts", - "source_location": "L77", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_connectionstats_extractmetrics", - "community": 123, - "community_name": "connectionStats.ts", - "norm_label": "extractmetrics()" - }, - { - "label": "formatBytes()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/connectionStats.ts", - "source_location": "L238", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_connectionstats_formatbytes", - "community": 123, - "community_name": "connectionStats.ts", - "norm_label": "formatbytes()" - }, - { - "label": "formatRate()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/connectionStats.ts", - "source_location": "L244", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_connectionstats_formatrate", - "community": 123, - "community_name": "connectionStats.ts", - "norm_label": "formatrate()" - }, - { - "label": "qualityFromRtt()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/connectionStats.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_connectionstats_qualityfromrtt", - "community": 123, - "community_name": "connectionStats.ts", - "norm_label": "qualityfromrtt()" - }, - { - "label": "createMockRoom()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/connection-stats.test.ts", - "source_location": "L159", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_connection_stats_test_createmockroom", - "community": 123, - "community_name": "connectionStats.ts", - "norm_label": "createmockroom()" - }, - { - "label": "mockTauriFullSession()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L735", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_mocktaurifullsession", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "mocktaurifullsession()" - }, - { - "label": "mockTauriFullSessionWithAutoConnect()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L756", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_mocktaurifullsessionwithautoconnect", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "mocktaurifullsessionwithautoconnect()" - }, - { - "label": "mockTauriFullSessionWithEcho()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L845", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_mocktaurifullsessionwithecho", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "mocktaurifullsessionwithecho()" - }, - { - "label": "mockTauriFullSessionWithFailingMessages()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L879", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_mocktaurifullsessionwithfailingmessages", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "mocktaurifullsessionwithfailingmessages()" - }, - { - "label": "mockTauriFullSessionWithMessages()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L788", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_mocktaurifullsessionwithmessages", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "mocktaurifullsessionwithmessages()" - }, - { - "label": "mockTauriFullSessionWithMessagesAndEcho()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L859", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_mocktaurifullsessionwithmessagesandecho", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "mocktaurifullsessionwithmessagesandecho()" - }, - { - "label": "navigateToMainPage()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L926", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_navigatetomainpage", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "navigatetomainpage()" - }, - { - "label": "openSettings()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L935", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_opensettings", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "opensettings()" - }, - { - "label": "switchSettingsTab()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L946", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_switchsettingstab", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "switchsettingstab()" - }, - { - "label": "kw()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/syntax-highlight.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_syntax_highlight_kw", - "community": 149, - "community_name": "syntax-highlight.ts", - "norm_label": "kw()" - }, - { - "label": "buildMatches()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/markdown.ts", - "source_location": "L169", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_markdown_buildmatches", - "community": 154, - "community_name": "markdown.ts", - "norm_label": "buildmatches()" - }, - { - "label": "codeSpanEnd()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/markdown.ts", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_markdown_codespanend", - "community": 154, - "community_name": "markdown.ts", - "norm_label": "codespanend()" - }, - { - "label": "isWordChar()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/markdown.ts", - "source_location": "L59", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_markdown_iswordchar", - "community": 154, - "community_name": "markdown.ts", - "norm_label": "iswordchar()" - }, - { - "label": "listItemAt()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/markdown.ts", - "source_location": "L333", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_markdown_listitemat", - "community": 154, - "community_name": "markdown.ts", - "norm_label": "listitemat()" - }, - { - "label": "matchDelim()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/markdown.ts", - "source_location": "L109", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_markdown_matchdelim", - "community": 154, - "community_name": "markdown.ts", - "norm_label": "matchdelim()" - }, - { - "label": "orderedStart()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/markdown.ts", - "source_location": "L345", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_markdown_orderedstart", - "community": 154, - "community_name": "markdown.ts", - "norm_label": "orderedstart()" - }, - { - "label": "parseBlocks()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/markdown.ts", - "source_location": "L355", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_markdown_parseblocks", - "community": 154, - "community_name": "markdown.ts", - "norm_label": "parseblocks()" - }, - { - "label": "parseInline()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/markdown.ts", - "source_location": "L224", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_markdown_parseinline", - "community": 154, - "community_name": "markdown.ts", - "norm_label": "parseinline()" - }, - { - "label": "parseLink()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/markdown.ts", - "source_location": "L195", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_markdown_parselink", - "community": 154, - "community_name": "markdown.ts", - "norm_label": "parselink()" - }, - { - "label": "runLength()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/markdown.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_markdown_runlength", - "community": 154, - "community_name": "markdown.ts", - "norm_label": "runlength()" - }, - { - "label": "scanClose()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/markdown.ts", - "source_location": "L125", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_markdown_scanclose", - "community": 154, - "community_name": "markdown.ts", - "norm_label": "scanclose()" - }, - { - "label": "urlEnd()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/markdown.ts", - "source_location": "L87", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_markdown_urlend", - "community": 154, - "community_name": "markdown.ts", - "norm_label": "urlend()" - }, - { - "label": "initDeepLinks()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/deep-link.ts", - "source_location": "L121", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_deep_link_initdeeplinks", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": "initdeeplinks()" - }, - { - "label": "linkSegments()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/deep-link.ts", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_deep_link_linksegments", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": "linksegments()" - }, - { - "label": "parseIdSegment()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/deep-link.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_deep_link_parseidsegment", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": "parseidsegment()" - }, - { - "label": "parseInviteLink()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/deep-link.ts", - "source_location": "L87", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_deep_link_parseinvitelink", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": "parseinvitelink()" - }, - { - "label": "parseMessageLink()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/deep-link.ts", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_deep_link_parsemessagelink", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": "parsemessagelink()" - }, - { - "label": "createVideoModeController()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/VideoModeController.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_videomodecontroller_createvideomodecontroller", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": "createvideomodecontroller()" - }, - { - "label": ".checkVideoMode()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/VideoModeController.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_videomodecontroller_videomodecontroller_checkvideomode", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": ".checkvideomode()" - }, - { - "label": ".destroy()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/VideoModeController.ts", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_videomodecontroller_videomodecontroller_destroy", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": ".destroy()" - }, - { - "label": ".getFocusedTileId()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/VideoModeController.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_videomodecontroller_videomodecontroller_getfocusedtileid", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": ".getfocusedtileid()" - }, - { - "label": ".isVideoMode()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/VideoModeController.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_videomodecontroller_videomodecontroller_isvideomode", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": ".isvideomode()" - }, - { - "label": ".setFocus()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/VideoModeController.ts", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_videomodecontroller_videomodecontroller_setfocus", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": ".setfocus()" - }, - { - "label": ".showChat()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/VideoModeController.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_videomodecontroller_videomodecontroller_showchat", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": ".showchat()" - }, - { - "label": ".showVideoGrid()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/VideoModeController.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_videomodecontroller_videomodecontroller_showvideogrid", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": ".showvideogrid()" - }, - { - "label": "makeSlots()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/video-mode-controller.test.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_video_mode_controller_test_makeslots", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": "makeslots()" - }, - { - "label": "makeVideoGrid()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/video-mode-controller.test.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_video_mode_controller_test_makevideogrid", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": "makevideogrid()" - }, - { - "label": "makeVoiceState()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/video-mode-controller.test.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_video_mode_controller_test_makevoicestate", - "community": 155, - "community_name": "deep-link.ts", - "norm_label": "makevoicestate()" - }, - { - "label": "logIceConnectionInfo()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitDiagnostics.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitdiagnostics_logiceconnectioninfo", - "community": 156, - "community_name": ".attemptAutoReconnect", - "norm_label": "logiceconnectioninfo()" - }, - { - "label": ".attemptAutoReconnect()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L491", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_attemptautoreconnect", - "community": 156, - "community_name": ".attemptAutoReconnect", - "norm_label": ".attemptautoreconnect()" - }, - { - "label": ".connectAndSetup()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1032", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_connectandsetup", - "community": 156, - "community_name": ".attemptAutoReconnect", - "norm_label": ".connectandsetup()" - }, - { - "label": ".disconnectSupersededLocalRoom()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1021", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_disconnectsupersededlocalroom", - "community": 156, - "community_name": ".attemptAutoReconnect", - "norm_label": ".disconnectsupersededlocalroom()" - }, - { - "label": ".ensureLiveKitProxy()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L752", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_ensurelivekitproxy", - "community": 156, - "community_name": ".attemptAutoReconnect", - "norm_label": ".ensurelivekitproxy()" - }, - { - "label": ".handleVoiceToken()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1357", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_handlevoicetoken", - "community": 156, - "community_name": ".attemptAutoReconnect", - "norm_label": ".handlevoicetoken()" - }, - { - "label": ".handleVoiceTokenRefresh()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L850", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_handlevoicetokenrefresh", - "community": 156, - "community_name": ".attemptAutoReconnect", - "norm_label": ".handlevoicetokenrefresh()" - }, - { - "label": ".isStateConnected()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L255", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_isstateconnected", - "community": 156, - "community_name": ".attemptAutoReconnect", - "norm_label": ".isstateconnected()" - }, - { - "label": ".reapplyMuteGain()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1702", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_reapplymutegain", - "community": 156, - "community_name": ".attemptAutoReconnect", - "norm_label": ".reapplymutegain()" - }, - { - "label": ".reconnectSuperseded()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L482", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_reconnectsuperseded", - "community": 156, - "community_name": ".attemptAutoReconnect", - "norm_label": ".reconnectsuperseded()" - }, - { - "label": ".requestTokenRefresh()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L805", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_requesttokenrefresh", - "community": 156, - "community_name": ".attemptAutoReconnect", - "norm_label": ".requesttokenrefresh()" - }, - { - "label": ".resolveLiveKitUrl()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L711", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_resolvelivekiturl", - "community": 156, - "community_name": ".attemptAutoReconnect", - "norm_label": ".resolvelivekiturl()" - }, - { - "label": ".setState()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L201", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_setstate", - "community": 156, - "community_name": ".attemptAutoReconnect", - "norm_label": ".setstate()" - }, - { - "label": ".startTokenRefreshTimer()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L783", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_starttokenrefreshtimer", - "community": 156, - "community_name": ".attemptAutoReconnect", - "norm_label": ".starttokenrefreshtimer()" - }, - { - "label": "._videoTrackDeps()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L271", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_videotrackdeps", - "community": 156, - "community_name": ".attemptAutoReconnect", - "norm_label": "._videotrackdeps()" - }, - { - "label": "createChatLimiter()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/rate-limiter.ts", - "source_location": "L143", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_rate_limiter_createchatlimiter", - "community": 157, - "community_name": "rate-limiter.ts", - "norm_label": "createchatlimiter()" - }, - { - "label": "createPresenceLimiter()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/rate-limiter.ts", - "source_location": "L153", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_rate_limiter_createpresencelimiter", - "community": 157, - "community_name": "rate-limiter.ts", - "norm_label": "createpresencelimiter()" - }, - { - "label": "createRateLimiter()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/rate-limiter.ts", - "source_location": "L134", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_rate_limiter_createratelimiter", - "community": 157, - "community_name": "rate-limiter.ts", - "norm_label": "createratelimiter()" - }, - { - "label": "createRateLimiterSet()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/rate-limiter.ts", - "source_location": "L192", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_rate_limiter_createratelimiterset", - "community": 157, - "community_name": "rate-limiter.ts", - "norm_label": "createratelimiterset()" - }, - { - "label": "createReactionLimiter()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/rate-limiter.ts", - "source_location": "L158", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_rate_limiter_createreactionlimiter", - "community": 157, - "community_name": "rate-limiter.ts", - "norm_label": "createreactionlimiter()" - }, - { - "label": "createTypingLimiter()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/rate-limiter.ts", - "source_location": "L148", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_rate_limiter_createtypinglimiter", - "community": 157, - "community_name": "rate-limiter.ts", - "norm_label": "createtypinglimiter()" - }, - { - "label": "createVideoCameraLimiter()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/rate-limiter.ts", - "source_location": "L175", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_rate_limiter_createvideocameralimiter", - "community": 157, - "community_name": "rate-limiter.ts", - "norm_label": "createvideocameralimiter()" - }, - { - "label": "createVoiceLimiter()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/rate-limiter.ts", - "source_location": "L170", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_rate_limiter_createvoicelimiter", - "community": 157, - "community_name": "rate-limiter.ts", - "norm_label": "createvoicelimiter()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/rate-limiter.ts", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_rate_limiter_ratelimiter_constructor", - "community": 157, - "community_name": "rate-limiter.ts", - "norm_label": ".constructor()" - }, - { - "label": ".getRemainingMs()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/rate-limiter.ts", - "source_location": "L88", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_rate_limiter_ratelimiter_getremainingms", - "community": 157, - "community_name": "rate-limiter.ts", - "norm_label": ".getremainingms()" - }, - { - "label": ".pruneAll()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/rate-limiter.ts", - "source_location": "L109", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_rate_limiter_ratelimiter_pruneall", - "community": 157, - "community_name": "rate-limiter.ts", - "norm_label": ".pruneall()" - }, - { - "label": ".reset()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/rate-limiter.ts", - "source_location": "L72", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_rate_limiter_ratelimiter_reset", - "community": 157, - "community_name": "rate-limiter.ts", - "norm_label": ".reset()" - }, - { - "label": ".resetAll()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/rate-limiter.ts", - "source_location": "L80", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_rate_limiter_ratelimiter_resetall", - "community": 157, - "community_name": "rate-limiter.ts", - "norm_label": ".resetall()" - }, - { - "label": ".tryConsume()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/rate-limiter.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_rate_limiter_ratelimiter_tryconsume", - "community": 157, - "community_name": "rate-limiter.ts", - "norm_label": ".tryconsume()" - }, - { - "label": "disconnect()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/video-grid.test.ts", - "source_location": "L103", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_video_grid_test_disconnect", - "community": 159, - "community_name": "video-grid.test.ts", - "norm_label": "disconnect()" - }, - { - "label": "fakeStream()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/video-grid.test.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_video_grid_test_fakestream", - "community": 159, - "community_name": "video-grid.test.ts", - "norm_label": "fakestream()" - }, - { - "label": "fakeStreamWithTrack()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/video-grid.test.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_video_grid_test_fakestreamwithtrack", - "community": 159, - "community_name": "video-grid.test.ts", - "norm_label": "fakestreamwithtrack()" - }, - { - "label": "makeTileConfig()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/video-grid.test.ts", - "source_location": "L76", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_video_grid_test_maketileconfig", - "community": 159, - "community_name": "video-grid.test.ts", - "norm_label": "maketileconfig()" - }, - { - "label": "observe()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/video-grid.test.ts", - "source_location": "L97", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_video_grid_test_observe", - "community": 159, - "community_name": "video-grid.test.ts", - "norm_label": "observe()" - }, - { - "label": "unobserve()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/video-grid.test.ts", - "source_location": "L100", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_video_grid_test_unobserve", - "community": 159, - "community_name": "video-grid.test.ts", - "norm_label": "unobserve()" - }, - { - "label": "createUserUpdateCredentialSaver()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/credentials.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_credentials_createuserupdatecredentialsaver", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "createuserupdatecredentialsaver()" - }, - { - "label": "deleteCredential()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/credentials.ts", - "source_location": "L109", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_credentials_deletecredential", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "deletecredential()" - }, - { - "label": "getInvoke()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/credentials.ts", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_credentials_getinvoke", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "getinvoke()" - }, - { - "label": "loadCredential()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/credentials.ts", - "source_location": "L82", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_credentials_loadcredential", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "loadcredential()" - }, - { - "label": "saveCredential()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/credentials.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_credentials_savecredential", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "savecredential()" - }, - { - "label": "renderPage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/main.ts", - "source_location": "L331", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_main_renderpage", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "renderpage()" - }, - { - "label": "runHealthChecks()", - "file_type": "code", - "source_file": "Client/tauri-client/src/main.ts", - "source_location": "L279", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_main_runhealthchecks", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "runhealthchecks()" - }, - { - "label": ".onAddProfile()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/ConnectPage.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connectpage_connectpagecallbacks_onaddprofile", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": ".onaddprofile()" - }, - { - "label": ".onAutoLoginCancel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/ConnectPage.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connectpage_connectpagecallbacks_onautologincancel", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": ".onautologincancel()" - }, - { - "label": ".onDeleteProfile()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/ConnectPage.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connectpage_connectpagecallbacks_ondeleteprofile", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": ".ondeleteprofile()" - }, - { - "label": ".onLogin()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/ConnectPage.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connectpage_connectpagecallbacks_onlogin", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": ".onlogin()" - }, - { - "label": ".onRegister()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/ConnectPage.ts", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connectpage_connectpagecallbacks_onregister", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": ".onregister()" - }, - { - "label": ".onToggleAutoLogin()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/ConnectPage.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connectpage_connectpagecallbacks_ontoggleautologin", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": ".ontoggleautologin()" - }, - { - "label": ".onTotpSubmit()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/ConnectPage.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connectpage_connectpagecallbacks_ontotpsubmit", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": ".ontotpsubmit()" - }, - { - "label": "createConnectPage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/ConnectPage.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connectpage_createconnectpage", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "createconnectpage()" - }, - { - "label": "closeSettings()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/ui.store.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_ui_store_closesettings", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "closesettings()" - }, - { - "label": "setTransientError()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/ui.store.ts", - "source_location": "L103", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_ui_store_settransienterror", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "settransienterror()" - }, - { - "label": "makeCallbacks()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/connect-page.test.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_connect_page_test_makecallbacks", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "makecallbacks()" - }, - { - "label": "flushMicrotasks()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/credentials.test.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_credentials_test_flushmicrotasks", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "flushmicrotasks()" - }, - { - "label": "importWithoutInvoke()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/credentials.test.ts", - "source_location": "L268", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_credentials_test_importwithoutinvoke", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "importwithoutinvoke()" - }, - { - "label": "makeCallbacks()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/login-form-totp-reentrancy.test.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_login_form_totp_reentrancy_test_makecallbacks", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "makecallbacks()" - }, - { - "label": "makeCallbacks()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/login-form-totp-retry.test.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_login_form_totp_retry_test_makecallbacks", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "makecallbacks()" - }, - { - "label": "makeCallbacks()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/login-form-totp-success-latch.test.ts", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_login_form_totp_success_latch_test_makecallbacks", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "makecallbacks()" - }, - { - "label": "fullProfile()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/server-panel.test.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_server_panel_test_fullprofile", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "fullprofile()" - }, - { - "label": "makeAc()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/server-panel.test.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_server_panel_test_makeac", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "makeac()" - }, - { - "label": "makeOpts()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/server-panel.test.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_server_panel_test_makeopts", - "community": 16, - "community_name": "ConnectPage.ts", - "norm_label": "makeopts()" - }, - { - "label": "fixPrompt()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt-fix.js", - "source_location": "L118", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_fix_fixprompt", - "community": 163, - "community_name": "bughunt-fix.js", - "norm_label": "fixprompt()" - }, - { - "label": "provePrompt()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt-fix.js", - "source_location": "L292", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_fix_proveprompt", - "community": 163, - "community_name": "bughunt-fix.js", - "norm_label": "proveprompt()" - }, - { - "label": "stacksFor()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt-fix.js", - "source_location": "L432", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_fix_stacksfor", - "community": 163, - "community_name": "bughunt-fix.js", - "norm_label": "stacksfor()" - }, - { - "label": "buildReadyPayload()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L255", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_buildreadypayload", - "community": 164, - "community_name": "buildTauriMockScript", - "norm_label": "buildreadypayload()" - }, - { - "label": "buildTauriMockScript()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L431", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_buildtaurimockscript", - "community": 164, - "community_name": "buildTauriMockScript", - "norm_label": "buildtaurimockscript()" - }, - { - "label": "chatEchoHandlers()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L283", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_chatechohandlers", - "community": 164, - "community_name": "buildTauriMockScript", - "norm_label": "chatechohandlers()" - }, - { - "label": "mockTauriConnect()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L712", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_mocktauriconnect", - "community": 164, - "community_name": "buildTauriMockScript", - "norm_label": "mocktauriconnect()" - }, - { - "label": "mockTauriConnectWith2FA()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L723", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_mocktauriconnectwith2fa", - "community": 164, - "community_name": "buildTauriMockScript", - "norm_label": "mocktauriconnectwith2fa()" - }, - { - "label": "mockTauriLoginError()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L896", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_mocktauriloginerror", - "community": 164, - "community_name": "buildTauriMockScript", - "norm_label": "mocktauriloginerror()" - }, - { - "label": "mockRegisterConflict()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/register-flow.spec.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_register_flow_spec_mockregisterconflict", - "community": 164, - "community_name": "buildTauriMockScript", - "norm_label": "mockregisterconflict()" - }, - { - "label": "mockRegisterSuccess()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/register-flow.spec.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_register_flow_spec_mockregistersuccess", - "community": 164, - "community_name": "buildTauriMockScript", - "norm_label": "mockregistersuccess()" - }, - { - "label": "switchToRegisterMode()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/register-flow.spec.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_register_flow_spec_switchtoregistermode", - "community": 164, - "community_name": "buildTauriMockScript", - "norm_label": "switchtoregistermode()" - }, - { - "label": "loginToTotp()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/totp-flow.spec.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_totp_flow_spec_logintototp", - "community": 164, - "community_name": "buildTauriMockScript", - "norm_label": "logintototp()" - }, - { - "label": "mockTotpFailure()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/totp-flow.spec.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_totp_flow_spec_mocktotpfailure", - "community": 164, - "community_name": "buildTauriMockScript", - "norm_label": "mocktotpfailure()" - }, - { - "label": "mockTotpSuccess()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/totp-flow.spec.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_totp_flow_spec_mocktotpsuccess", - "community": 164, - "community_name": "buildTauriMockScript", - "norm_label": "mocktotpsuccess()" - }, - { - "label": "containsStrictInequality()", - "file_type": "code", - "source_file": "Client/tauri-client/eslint-rules.js", - "source_location": "L139", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_eslint_rules_containsstrictinequality", - "community": 168, - "community_name": "eslint-rules.js", - "norm_label": "containsstrictinequality()" - }, - { - "label": "getCalleeName()", - "file_type": "code", - "source_file": "Client/tauri-client/eslint-rules.js", - "source_location": "L196", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_eslint_rules_getcalleename", - "community": 168, - "community_name": "eslint-rules.js", - "norm_label": "getcalleename()" - }, - { - "label": "isFunctionNode()", - "file_type": "code", - "source_file": "Client/tauri-client/eslint-rules.js", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_eslint_rules_isfunctionnode", - "community": 168, - "community_name": "eslint-rules.js", - "norm_label": "isfunctionnode()" - }, - { - "label": "isStoreModuleSource()", - "file_type": "code", - "source_file": "Client/tauri-client/eslint-rules.js", - "source_location": "L326", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_eslint_rules_isstoremodulesource", - "community": 168, - "community_name": "eslint-rules.js", - "norm_label": "isstoremodulesource()" - }, - { - "label": "isThisMember()", - "file_type": "code", - "source_file": "Client/tauri-client/eslint-rules.js", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_eslint_rules_isthismember", - "community": 168, - "community_name": "eslint-rules.js", - "norm_label": "isthismember()" - }, - { - "label": "isThisMethodCall()", - "file_type": "code", - "source_file": "Client/tauri-client/eslint-rules.js", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_eslint_rules_isthismethodcall", - "community": 168, - "community_name": "eslint-rules.js", - "norm_label": "isthismethodcall()" - }, - { - "label": "isWsOnCall()", - "file_type": "code", - "source_file": "Client/tauri-client/eslint-rules.js", - "source_location": "L331", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_eslint_rules_iswsoncall", - "community": 168, - "community_name": "eslint-rules.js", - "norm_label": "iswsoncall()" - }, - { - "label": "testSignalsSuperseded()", - "file_type": "code", - "source_file": "Client/tauri-client/eslint-rules.js", - "source_location": "L66", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_eslint_rules_testsignalssuperseded", - "community": 168, - "community_name": "eslint-rules.js", - "norm_label": "testsignalssuperseded()" - }, - { - "label": "createLogsTab()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/LogsTab.ts", - "source_location": "L79", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_logstab_createlogstab", - "community": 177, - "community_name": "logger.ts", - "norm_label": "createlogstab()" - }, - { - "label": "formatLogEntry()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/LogsTab.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_logstab_formatlogentry", - "community": 177, - "community_name": "logger.ts", - "norm_label": "formatlogentry()" - }, - { - "label": ".build()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/LogsTab.ts", - "source_location": "L75", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_logstab_logstabhandle_build", - "community": 177, - "community_name": "logger.ts", - "norm_label": ".build()" - }, - { - "label": ".cleanup()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/LogsTab.ts", - "source_location": "L76", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_logstab_logstabhandle_cleanup", - "community": 177, - "community_name": "logger.ts", - "norm_label": ".cleanup()" - }, - { - "label": "createUpdateNotifier()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/UpdateNotifier.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_updatenotifier_createupdatenotifier", - "community": 177, - "community_name": "logger.ts", - "norm_label": "createupdatenotifier()" - }, - { - "label": "formatDownloadProgress()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/UpdateNotifier.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_updatenotifier_formatdownloadprogress", - "community": 177, - "community_name": "logger.ts", - "norm_label": "formatdownloadprogress()" - }, - { - "label": "addLogListener()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logger.ts", - "source_location": "L162", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logger_addloglistener", - "community": 177, - "community_name": "logger.ts", - "norm_label": "addloglistener()" - }, - { - "label": "applyStoredLogLevel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logger.ts", - "source_location": "L144", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logger_applystoredloglevel", - "community": 177, - "community_name": "logger.ts", - "norm_label": "applystoredloglevel()" - }, - { - "label": "clearLogBuffer()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logger.ts", - "source_location": "L180", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logger_clearlogbuffer", - "community": 177, - "community_name": "logger.ts", - "norm_label": "clearlogbuffer()" - }, - { - "label": "createEntry()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logger.ts", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logger_createentry", - "community": 177, - "community_name": "logger.ts", - "norm_label": "createentry()" - }, - { - "label": "emit()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logger.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logger_emit", - "community": 177, - "community_name": "logger.ts", - "norm_label": "emit()" - }, - { - "label": "getLogBuffer()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logger.ts", - "source_location": "L173", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logger_getlogbuffer", - "community": 177, - "community_name": "logger.ts", - "norm_label": "getlogbuffer()" - }, - { - "label": "getLogLevel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logger.ts", - "source_location": "L126", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logger_getloglevel", - "community": 177, - "community_name": "logger.ts", - "norm_label": "getloglevel()" - }, - { - "label": "readStoredLogLevel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logger.ts", - "source_location": "L135", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logger_readstoredloglevel", - "community": 177, - "community_name": "logger.ts", - "norm_label": "readstoredloglevel()" - }, - { - "label": "serializeData()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logger.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logger_serializedata", - "community": 177, - "community_name": "logger.ts", - "norm_label": "serializedata()" - }, - { - "label": "setLogLevel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logger.ts", - "source_location": "L116", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logger_setloglevel", - "community": 177, - "community_name": "logger.ts", - "norm_label": "setloglevel()" - }, - { - "label": "shouldLog()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logger.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logger_shouldlog", - "community": 177, - "community_name": "logger.ts", - "norm_label": "shouldlog()" - }, - { - "label": "flushBuffer()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logPersistence.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logpersistence_flushbuffer", - "community": 177, - "community_name": "logger.ts", - "norm_label": "flushbuffer()" - }, - { - "label": "flushLogs()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logPersistence.ts", - "source_location": "L176", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logpersistence_flushlogs", - "community": 177, - "community_name": "logger.ts", - "norm_label": "flushlogs()" - }, - { - "label": "getLogDir()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logPersistence.ts", - "source_location": "L189", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logpersistence_getlogdir", - "community": 177, - "community_name": "logger.ts", - "norm_label": "getlogdir()" - }, - { - "label": "initLogPersistence()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logPersistence.ts", - "source_location": "L125", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logpersistence_initlogpersistence", - "community": 177, - "community_name": "logger.ts", - "norm_label": "initlogpersistence()" - }, - { - "label": "logFilePath()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logPersistence.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logpersistence_logfilepath", - "community": 177, - "community_name": "logger.ts", - "norm_label": "logfilepath()" - }, - { - "label": "onLogEntry()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logPersistence.ts", - "source_location": "L108", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logpersistence_onlogentry", - "community": 177, - "community_name": "logger.ts", - "norm_label": "onlogentry()" - }, - { - "label": "rotateOldFiles()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logPersistence.ts", - "source_location": "L86", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logpersistence_rotateoldfiles", - "community": 177, - "community_name": "logger.ts", - "norm_label": "rotateoldfiles()" - }, - { - "label": "scheduleFlush()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logPersistence.ts", - "source_location": "L77", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logpersistence_scheduleflush", - "community": 177, - "community_name": "logger.ts", - "norm_label": "scheduleflush()" - }, - { - "label": "today()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logPersistence.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logpersistence_today", - "community": 177, - "community_name": "logger.ts", - "norm_label": "today()" - }, - { - "label": "readMigratedStringPref()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/preferences.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_preferences_readmigratedstringpref", - "community": 177, - "community_name": "logger.ts", - "norm_label": "readmigratedstringpref()" - }, - { - "label": "checkForUpdate()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/updater.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_updater_checkforupdate", - "community": 177, - "community_name": "logger.ts", - "norm_label": "checkforupdate()" - }, - { - "label": "downloadAndInstallUpdate()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/updater.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_updater_downloadandinstallupdate", - "community": 177, - "community_name": "logger.ts", - "norm_label": "downloadandinstallupdate()" - }, - { - "label": "captureListener()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/log-persistence.test.ts", - "source_location": "L72", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_log_persistence_test_capturelistener", - "community": 177, - "community_name": "logger.ts", - "norm_label": "capturelistener()" - }, - { - "label": "freshImport()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/log-persistence.test.ts", - "source_location": "L66", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_log_persistence_test_freshimport", - "community": 177, - "community_name": "logger.ts", - "norm_label": "freshimport()" - }, - { - "label": "makeEntry()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/log-persistence.test.ts", - "source_location": "L85", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_log_persistence_test_makeentry", - "community": 177, - "community_name": "logger.ts", - "norm_label": "makeentry()" - }, - { - "label": "makeMockEntry()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/logs-tab.test.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_logs_tab_test_makemockentry", - "community": 177, - "community_name": "logger.ts", - "norm_label": "makemockentry()" - }, - { - "label": "bannerText()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/update-notifier.test.ts", - "source_location": "L71", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_update_notifier_test_bannertext", - "community": 177, - "community_name": "logger.ts", - "norm_label": "bannertext()" - }, - { - "label": "mountWithAvailableUpdate()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/update-notifier.test.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_update_notifier_test_mountwithavailableupdate", - "community": 177, - "community_name": "logger.ts", - "norm_label": "mountwithavailableupdate()" - }, - { - "label": "authenticate()", - "file_type": "code", - "source_file": "Server/scripts/k6/ws-load.js", - "source_location": "L83", - "_callable": true, - "_origin": "ast", - "id": "server_scripts_k6_ws_load_authenticate", - "community": 183, - "community_name": "ws-load.js", - "norm_label": "authenticate()" - }, - { - "label": "envelope()", - "file_type": "code", - "source_file": "Server/scripts/k6/ws-load.js", - "source_location": "L78", - "_callable": true, - "_origin": "ast", - "id": "server_scripts_k6_ws_load_envelope", - "community": 183, - "community_name": "ws-load.js", - "norm_label": "envelope()" - }, - { - "label": "handleSummary()", - "file_type": "code", - "source_file": "Server/scripts/k6/ws-load.js", - "source_location": "L229", - "_callable": true, - "_origin": "ast", - "id": "server_scripts_k6_ws_load_handlesummary", - "community": 183, - "community_name": "ws-load.js", - "norm_label": "handlesummary()" - }, - { - "label": "textSummary()", - "file_type": "code", - "source_file": "Server/scripts/k6/ws-load.js", - "source_location": "L237", - "_callable": true, - "_origin": "ast", - "id": "server_scripts_k6_ws_load_textsummary", - "community": 183, - "community_name": "ws-load.js", - "norm_label": "textsummary()" - }, - { - "label": "constructor()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/screen-share-tracks.test.ts", - "source_location": "L140", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_screen_share_tracks_test_constructor", - "community": 187, - "community_name": "screen-share-tracks.test.ts", - "norm_label": "constructor()" - }, - { - "label": "fakeAudioTrack()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/screen-share-tracks.test.ts", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_screen_share_tracks_test_fakeaudiotrack", - "community": 187, - "community_name": "screen-share-tracks.test.ts", - "norm_label": "fakeaudiotrack()" - }, - { - "label": "fakeDeps()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/screen-share-tracks.test.ts", - "source_location": "L112", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_screen_share_tracks_test_fakedeps", - "community": 187, - "community_name": "screen-share-tracks.test.ts", - "norm_label": "fakedeps()" - }, - { - "label": "fakeMediaStreamTrack()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/screen-share-tracks.test.ts", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_screen_share_tracks_test_fakemediastreamtrack", - "community": 187, - "community_name": "screen-share-tracks.test.ts", - "norm_label": "fakemediastreamtrack()" - }, - { - "label": "fakeRoom()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/screen-share-tracks.test.ts", - "source_location": "L89", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_screen_share_tracks_test_fakeroom", - "community": 187, - "community_name": "screen-share-tracks.test.ts", - "norm_label": "fakeroom()" - }, - { - "label": "fakeVideoTrack()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/screen-share-tracks.test.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_screen_share_tracks_test_fakevideotrack", - "community": 187, - "community_name": "screen-share-tracks.test.ts", - "norm_label": "fakevideotrack()" - }, - { - "label": "roomWithLocalPub()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/screen-share-tracks.test.ts", - "source_location": "L837", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_screen_share_tracks_test_roomwithlocalpub", - "community": 187, - "community_name": "screen-share-tracks.test.ts", - "norm_label": "roomwithlocalpub()" - }, - { - "label": "roomWithRemote()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/screen-share-tracks.test.ts", - "source_location": "L876", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_screen_share_tracks_test_roomwithremote", - "community": 187, - "community_name": "screen-share-tracks.test.ts", - "norm_label": "roomwithremote()" - }, - { - "label": ".applyInviteLink()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L66", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform_loginformapi_applyinvitelink", - "community": 188, - "community_name": "LoginFormApi", - "norm_label": ".applyinvitelink()" - }, - { - "label": ".destroy()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L71", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform_loginformapi_destroy", - "community": 188, - "community_name": "LoginFormApi", - "norm_label": ".destroy()" - }, - { - "label": ".focusHost()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L70", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform_loginformapi_focushost", - "community": 188, - "community_name": "LoginFormApi", - "norm_label": ".focushost()" - }, - { - "label": ".getAutoConnect()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform_loginformapi_getautoconnect", - "community": 188, - "community_name": "LoginFormApi", - "norm_label": ".getautoconnect()" - }, - { - "label": ".getHost()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L68", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform_loginformapi_gethost", - "community": 188, - "community_name": "LoginFormApi", - "norm_label": ".gethost()" - }, - { - "label": ".getPassword()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L60", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform_loginformapi_getpassword", - "community": 188, - "community_name": "LoginFormApi", - "norm_label": ".getpassword()" - }, - { - "label": ".getRememberPassword()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform_loginformapi_getrememberpassword", - "community": 188, - "community_name": "LoginFormApi", - "norm_label": ".getrememberpassword()" - }, - { - "label": ".resetToIdle()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform_loginformapi_resettoidle", - "community": 188, - "community_name": "LoginFormApi", - "norm_label": ".resettoidle()" - }, - { - "label": ".setAutoConnect()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L59", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform_loginformapi_setautoconnect", - "community": 188, - "community_name": "LoginFormApi", - "norm_label": ".setautoconnect()" - }, - { - "label": ".setCredentials()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L64", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform_loginformapi_setcredentials", - "community": 188, - "community_name": "LoginFormApi", - "norm_label": ".setcredentials()" - }, - { - "label": ".setHost()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L62", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform_loginformapi_sethost", - "community": 188, - "community_name": "LoginFormApi", - "norm_label": ".sethost()" - }, - { - "label": ".showAutoConnecting()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform_loginformapi_showautoconnecting", - "community": 188, - "community_name": "LoginFormApi", - "norm_label": ".showautoconnecting()" - }, - { - "label": ".showConnecting()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L51", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform_loginformapi_showconnecting", - "community": 188, - "community_name": "LoginFormApi", - "norm_label": ".showconnecting()" - }, - { - "label": ".showError()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform_loginformapi_showerror", - "community": 188, - "community_name": "LoginFormApi", - "norm_label": ".showerror()" - }, - { - "label": ".showTotp()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform_loginformapi_showtotp", - "community": 188, - "community_name": "LoginFormApi", - "norm_label": ".showtotp()" - }, - { - "label": "mockTauriSessionWithChannels()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/gating-badges.parity.spec.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_gating_badges_parity_spec_mocktaurisessionwithchannels", - "community": 189, - "community_name": "social.parity.spec.ts", - "norm_label": "mocktaurisessionwithchannels()" - }, - { - "label": "captureScript()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/social.parity.spec.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_social_parity_spec_capturescript", - "community": 189, - "community_name": "social.parity.spec.ts", - "norm_label": "capturescript()" - }, - { - "label": "getCapturedCalls()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/social.parity.spec.ts", - "source_location": "L75", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_social_parity_spec_getcapturedcalls", - "community": 189, - "community_name": "social.parity.spec.ts", - "norm_label": "getcapturedcalls()" - }, - { - "label": "mockRoleChangeSession()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/social.parity.spec.ts", - "source_location": "L250", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_social_parity_spec_mockrolechangesession", - "community": 189, - "community_name": "social.parity.spec.ts", - "norm_label": "mockrolechangesession()" - }, - { - "label": "mockSocialSession()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/social.parity.spec.ts", - "source_location": "L137", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_social_parity_spec_mocksocialsession", - "community": 189, - "community_name": "social.parity.spec.ts", - "norm_label": "mocksocialsession()" - }, - { - "label": "waitForCapturedCall()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/social.parity.spec.ts", - "source_location": "L83", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_social_parity_spec_waitforcapturedcall", - "community": 189, - "community_name": "social.parity.spec.ts", - "norm_label": "waitforcapturedcall()" - }, - { - "label": "base64ToUint8()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/e2eeCrypto.ts", - "source_location": "L344", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_e2eecrypto_base64touint8", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "base64touint8()" - }, - { - "label": "buildAnnounceMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/e2eeCrypto.ts", - "source_location": "L185", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_e2eecrypto_buildannouncemessage", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "buildannouncemessage()" - }, - { - "label": "computeKeyFingerprint()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/e2eeCrypto.ts", - "source_location": "L78", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_e2eecrypto_computekeyfingerprint", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "computekeyfingerprint()" - }, - { - "label": "computeRawKeyFingerprint()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/e2eeCrypto.ts", - "source_location": "L85", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_e2eecrypto_computerawkeyfingerprint", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "computerawkeyfingerprint()" - }, - { - "label": "deriveWrappingKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/e2eeCrypto.ts", - "source_location": "L309", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_e2eecrypto_derivewrappingkey", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "derivewrappingkey()" - }, - { - "label": "encodeOfferEpoch()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/e2eeCrypto.ts", - "source_location": "L222", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_e2eecrypto_encodeofferepoch", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "encodeofferepoch()" - }, - { - "label": "exportIdentityKeyPair()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/e2eeCrypto.ts", - "source_location": "L168", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_e2eecrypto_exportidentitykeypair", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "exportidentitykeypair()" - }, - { - "label": "exportPublicKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/e2eeCrypto.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_e2eecrypto_exportpublickey", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "exportpublickey()" - }, - { - "label": "generateECDHKeyPair()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/e2eeCrypto.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_e2eecrypto_generateecdhkeypair", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "generateecdhkeypair()" - }, - { - "label": "generateIdentityKeyPair()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/e2eeCrypto.ts", - "source_location": "L98", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_e2eecrypto_generateidentitykeypair", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "generateidentitykeypair()" - }, - { - "label": "generateRoomKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/e2eeCrypto.ts", - "source_location": "L202", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_e2eecrypto_generateroomkey", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "generateroomkey()" - }, - { - "label": "importIdentityKeyPair()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/e2eeCrypto.ts", - "source_location": "L174", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_e2eecrypto_importidentitykeypair", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "importidentitykeypair()" - }, - { - "label": "importIdentityPublicKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/e2eeCrypto.ts", - "source_location": "L156", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_e2eecrypto_importidentitypublickey", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "importidentitypublickey()" - }, - { - "label": "importPublicKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/e2eeCrypto.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_e2eecrypto_importpublickey", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "importpublickey()" - }, - { - "label": "roomKeyToBase64()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/e2eeCrypto.ts", - "source_location": "L207", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_e2eecrypto_roomkeytobase64", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "roomkeytobase64()" - }, - { - "label": "signEphemeralKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/e2eeCrypto.ts", - "source_location": "L111", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_e2eecrypto_signephemeralkey", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "signephemeralkey()" - }, - { - "label": "uint8ToBase64()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/e2eeCrypto.ts", - "source_location": "L340", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_e2eecrypto_uint8tobase64", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "uint8tobase64()" - }, - { - "label": "unwrapRoomKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/e2eeCrypto.ts", - "source_location": "L269", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_e2eecrypto_unwraproomkey", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "unwraproomkey()" - }, - { - "label": "verifyEphemeralKeySignature()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/e2eeCrypto.ts", - "source_location": "L130", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_e2eecrypto_verifyephemeralkeysignature", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "verifyephemeralkeysignature()" - }, - { - "label": "wrapRoomKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/e2eeCrypto.ts", - "source_location": "L240", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_e2eecrypto_wraproomkey", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "wraproomkey()" - }, - { - "label": "deleteIdentityKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/identity.ts", - "source_location": "L88", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_identity_deleteidentitykey", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "deleteidentitykey()" - }, - { - "label": "ensureIdentityKeyPublished()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/identity.ts", - "source_location": "L402", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_identity_ensureidentitykeypublished", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "ensureidentitykeypublished()" - }, - { - "label": "getIdentityPin()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/identity.ts", - "source_location": "L158", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_identity_getidentitypin", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "getidentitypin()" - }, - { - "label": "getInvoke()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/identity.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_identity_getinvoke", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "getinvoke()" - }, - { - "label": "getOrCreateIdentityKeyPair()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/identity.ts", - "source_location": "L233", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_identity_getorcreateidentitykeypair", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "getorcreateidentitykeypair()" - }, - { - "label": "identityScopeKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/identity.ts", - "source_location": "L221", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_identity_identityscopekey", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "identityscopekey()" - }, - { - "label": "loadIdentityKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/identity.ts", - "source_location": "L69", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_identity_loadidentitykey", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "loadidentitykey()" - }, - { - "label": "loadOrGenerateIdentityKeyPair()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/identity.ts", - "source_location": "L307", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_identity_loadorgenerateidentitykeypair", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "loadorgenerateidentitykeypair()" - }, - { - "label": "migrateLegacyIdentityKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/identity.ts", - "source_location": "L277", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_identity_migratelegacyidentitykey", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "migratelegacyidentitykey()" - }, - { - "label": "publishIdentityKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/identity.ts", - "source_location": "L365", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_identity_publishidentitykey", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "publishidentitykey()" - }, - { - "label": "resetIdentityKeyPairCache()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/identity.ts", - "source_location": "L249", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_identity_resetidentitykeypaircache", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "resetidentitykeypaircache()" - }, - { - "label": "saveIdentityKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/identity.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_identity_saveidentitykey", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "saveidentitykey()" - }, - { - "label": "storeIdentityPin()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/identity.ts", - "source_location": "L116", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_identity_storeidentitypin", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "storeidentitypin()" - }, - { - "label": ".buildAnnouncePayload()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L467", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_buildannouncepayload", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".buildannouncepayload()" - }, - { - "label": ".clearIdentityKeyPair()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L460", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_clearidentitykeypair", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".clearidentitykeypair()" - }, - { - "label": ".clearKeyRotationTimer()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L1351", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_clearkeyrotationtimer", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".clearkeyrotationtimer()" - }, - { - "label": ".clearReconnectConfirmTimer()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L415", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_clearreconnectconfirmtimer", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".clearreconnectconfirmtimer()" - }, - { - "label": ".clearState()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L1409", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_clearstate", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".clearstate()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L109", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_constructor", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".constructor()" - }, - { - "label": ".distributeRoomKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L1112", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_distributeroomkey", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".distributeroomkey()" - }, - { - "label": ".drainPendingRotationOrArmTimer()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L1397", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_drainpendingrotationorarmtimer", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".drainpendingrotationorarmtimer()" - }, - { - "label": ".ensureIdentityKeyPair()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L442", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_ensureidentitykeypair", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".ensureidentitykeypair()" - }, - { - "label": ".epoch()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L116", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_epoch", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".epoch()" - }, - { - "label": ".handleAnnounce()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L701", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_handleannounce", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".handleannounce()" - }, - { - "label": ".handleAnnounceInner()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L726", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_handleannounceinner", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".handleannounceinner()" - }, - { - "label": ".handleOffer()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L895", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_handleoffer", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".handleoffer()" - }, - { - "label": ".handleOfferInner()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L905", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_handleofferinner", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".handleofferinner()" - }, - { - "label": ".handleParticipantLeft()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L1197", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_handleparticipantleft", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".handleparticipantleft()" - }, - { - "label": ".isRetiredPeerKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L711", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_isretiredpeerkey", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".isretiredpeerkey()" - }, - { - "label": ".peerPublicKeys()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L113", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_peerpublickeys", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".peerpublickeys()" - }, - { - "label": ".pendingAnnounces()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L131", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_pendingannounces", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".pendingannounces()" - }, - { - "label": ".pruneOfferSendTimes()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L1047", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_pruneoffersendtimes", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".pruneoffersendtimes()" - }, - { - "label": ".rawFromBase64()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L426", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_rawfrombase64", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".rawfrombase64()" - }, - { - "label": ".reannounceForReconnect()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L337", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_reannounceforreconnect", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".reannounceforreconnect()" - }, - { - "label": ".rePinPeerIdentity()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L657", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_repinpeeridentity", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".repinpeeridentity()" - }, - { - "label": ".retirePeerKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L717", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_retirepeerkey", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".retirepeerkey()" - }, - { - "label": ".rotateKeyPeriodically()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L1359", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_rotatekeyperiodically", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".rotatekeyperiodically()" - }, - { - "label": ".rotateRoomKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L1168", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_rotateroomkey", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".rotateroomkey()" - }, - { - "label": ".rotatingKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L119", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_rotatingkey", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".rotatingkey()" - }, - { - "label": ".rotationPending()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L125", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_rotationpending", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".rotationpending()" - }, - { - "label": ".sendOfferPaced()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L1070", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_sendofferpaced", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".sendofferpaced()" - }, - { - "label": ".setPeerVerificationIfCurrent()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L633", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_setpeerverificationifcurrent", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".setpeerverificationifcurrent()" - }, - { - "label": ".setupKeyExchange()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L150", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_setupkeyexchange", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".setupkeyexchange()" - }, - { - "label": ".startKeyRotationTimer()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L1339", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_startkeyrotationtimer", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".startkeyrotationtimer()" - }, - { - "label": ".verifyPeerAnnounce()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitE2EE.ts", - "source_location": "L498", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekite2ee_e2eemanager_verifypeerannounce", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": ".verifypeerannounce()" - }, - { - "label": "setLocalSessionFingerprint()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L527", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_setlocalsessionfingerprint", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "setlocalsessionfingerprint()" - }, - { - "label": "fixture()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/e2eeCrypto.test.ts", - "source_location": "L393", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_e2eecrypto_test_fixture", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "fixture()" - }, - { - "label": "importFresh()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/e2eeCrypto.test.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_e2eecrypto_test_importfresh", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "importfresh()" - }, - { - "label": "invoke()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/identity.test.ts", - "source_location": "L19", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_identity_test_invoke", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "invoke()" - }, - { - "label": "keyringDouble()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/identity.test.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_identity_test_keyringdouble", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "keyringdouble()" - }, - { - "label": "createManager()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/livekit-e2ee.test.ts", - "source_location": "L104", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_livekit_e2ee_test_createmanager", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "createmanager()" - }, - { - "label": "holderWithPeer()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/livekit-e2ee.test.ts", - "source_location": "L1312", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_livekit_e2ee_test_holderwithpeer", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "holderwithpeer()" - }, - { - "label": "sendsOfType()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/livekit-e2ee.test.ts", - "source_location": "L112", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_livekit_e2ee_test_sendsoftype", - "community": 20, - "community_name": "livekitE2EE.ts", - "norm_label": "sendsoftype()" - }, - { - "label": ".applyNoiseSuppressor()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline_applynoisesuppressor", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": ".applynoisesuppressor()" - }, - { - "label": ".ctxState()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline_ctxstate", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": ".ctxstate()" - }, - { - "label": ".gainValue()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L51", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline_gainvalue", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": ".gainvalue()" - }, - { - "label": ".inputGain()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L66", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline_inputgain", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": ".inputgain()" - }, - { - "label": ".isActive()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline_isactive", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": ".isactive()" - }, - { - "label": ".isVadGated()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline_isvadgated", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": ".isvadgated()" - }, - { - "label": ".lastVadRms()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L277", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline_lastvadrms", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": ".lastvadrms()" - }, - { - "label": ".reapplyAudioProcessing()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L445", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline_reapplyaudioprocessing", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": ".reapplyaudioprocessing()" - }, - { - "label": ".removeNoiseSuppressor()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L89", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline_removenoisesuppressor", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": ".removenoisesuppressor()" - }, - { - "label": ".setInputVolume()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L235", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline_setinputvolume", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": ".setinputvolume()" - }, - { - "label": ".setRoom()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline_setroom", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": ".setroom()" - }, - { - "label": ".setupAudioPipeline()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L104", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline_setupaudiopipeline", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": ".setupaudiopipeline()" - }, - { - "label": ".setVoiceSensitivity()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L248", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline_setvoicesensitivity", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": ".setvoicesensitivity()" - }, - { - "label": ".startVadFallback()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L357", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline_startvadfallback", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": ".startvadfallback()" - }, - { - "label": ".startVadPolling()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L286", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline_startvadpolling", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": ".startvadpolling()" - }, - { - "label": ".startVadWorklet()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L315", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline_startvadworklet", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": ".startvadworklet()" - }, - { - "label": ".stopVadPolling()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L418", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline_stopvadpolling", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": ".stopvadpolling()" - }, - { - "label": ".teardownAudioPipeline()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L175", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline_teardownaudiopipeline", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": ".teardownaudiopipeline()" - }, - { - "label": ".updatePipelineGain()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L223", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline_updatepipelinegain", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": ".updatepipelinegain()" - }, - { - "label": ".vadUsingWorklet()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioPipeline.ts", - "source_location": "L281", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audiopipeline_audiopipeline_vadusingworklet", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": ".vadusingworklet()" - }, - { - "label": "setupFallbackPipeline()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/audio-pipeline-vad-fallback.test.ts", - "source_location": "L219", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_audio_pipeline_vad_fallback_test_setupfallbackpipeline", - "community": 205, - "community_name": "AudioPipeline", - "norm_label": "setupfallbackpipeline()" - }, - { - "label": "._cleanup()", - "file_type": "code", - "source_file": "Client/tauri-client/public/rnnoise-worklet.js", - "source_location": "L174", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_public_rnnoise_worklet_rnnoiseprocessor_cleanup", - "community": 217, - "community_name": "RNNoiseProcessor", - "norm_label": "._cleanup()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "Client/tauri-client/public/rnnoise-worklet.js", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_public_rnnoise_worklet_rnnoiseprocessor_constructor", - "community": 217, - "community_name": "RNNoiseProcessor", - "norm_label": ".constructor()" - }, - { - "label": "._fillOutputFromRingBuffer()", - "file_type": "code", - "source_file": "Client/tauri-client/public/rnnoise-worklet.js", - "source_location": "L217", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_public_rnnoise_worklet_rnnoiseprocessor_filloutputfromringbuffer", - "community": 217, - "community_name": "RNNoiseProcessor", - "norm_label": "._filloutputfromringbuffer()" - }, - { - "label": "._initWasm()", - "file_type": "code", - "source_file": "Client/tauri-client/public/rnnoise-worklet.js", - "source_location": "L68", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_public_rnnoise_worklet_rnnoiseprocessor_initwasm", - "community": 217, - "community_name": "RNNoiseProcessor", - "norm_label": "._initwasm()" - }, - { - "label": ".process()", - "file_type": "code", - "source_file": "Client/tauri-client/public/rnnoise-worklet.js", - "source_location": "L244", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_public_rnnoise_worklet_rnnoiseprocessor_process", - "community": 217, - "community_name": "RNNoiseProcessor", - "norm_label": ".process()" - }, - { - "label": "._processFrame()", - "file_type": "code", - "source_file": "Client/tauri-client/public/rnnoise-worklet.js", - "source_location": "L134", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_public_rnnoise_worklet_rnnoiseprocessor_processframe", - "community": 217, - "community_name": "RNNoiseProcessor", - "norm_label": "._processframe()" - }, - { - "label": "._processInputRingBuffer()", - "file_type": "code", - "source_file": "Client/tauri-client/public/rnnoise-worklet.js", - "source_location": "L196", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_public_rnnoise_worklet_rnnoiseprocessor_processinputringbuffer", - "community": 217, - "community_name": "RNNoiseProcessor", - "norm_label": "._processinputringbuffer()" - }, - { - "label": "._reportError()", - "file_type": "code", - "source_file": "Client/tauri-client/public/rnnoise-worklet.js", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_public_rnnoise_worklet_rnnoiseprocessor_reporterror", - "community": 217, - "community_name": "RNNoiseProcessor", - "norm_label": "._reporterror()" - }, - { - "label": "_processFrame()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/rnnoise-worklet.test.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_rnnoise_worklet_test_processframe", - "community": 217, - "community_name": "RNNoiseProcessor", - "norm_label": "_processframe()" - }, - { - "label": ".cycleMicForDeviceSwitch()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/deviceManager.ts", - "source_location": "L72", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_devicemanager_devicemanager_cyclemicfordeviceswitch", - "community": 218, - "community_name": "DeviceManager", - "norm_label": ".cyclemicfordeviceswitch()" - }, - { - "label": ".handleDeviceChange()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/deviceManager.ts", - "source_location": "L115", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_devicemanager_devicemanager_handledevicechange", - "community": 218, - "community_name": "DeviceManager", - "norm_label": ".handledevicechange()" - }, - { - "label": ".setAudioPipeline()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/deviceManager.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_devicemanager_devicemanager_setaudiopipeline", - "community": 218, - "community_name": "DeviceManager", - "norm_label": ".setaudiopipeline()" - }, - { - "label": ".setOnError()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/deviceManager.ts", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_devicemanager_devicemanager_setonerror", - "community": 218, - "community_name": "DeviceManager", - "norm_label": ".setonerror()" - }, - { - "label": ".setOnToast()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/deviceManager.ts", - "source_location": "L62", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_devicemanager_devicemanager_setontoast", - "community": 218, - "community_name": "DeviceManager", - "norm_label": ".setontoast()" - }, - { - "label": ".setRoom()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/deviceManager.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_devicemanager_devicemanager_setroom", - "community": 218, - "community_name": "DeviceManager", - "norm_label": ".setroom()" - }, - { - "label": ".startDeviceChangeListener()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/deviceManager.ts", - "source_location": "L91", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_devicemanager_devicemanager_startdevicechangelistener", - "community": 218, - "community_name": "DeviceManager", - "norm_label": ".startdevicechangelistener()" - }, - { - "label": ".stopDeviceChangeListener()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/deviceManager.ts", - "source_location": "L104", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_devicemanager_devicemanager_stopdevicechangelistener", - "community": 218, - "community_name": "DeviceManager", - "norm_label": ".stopdevicechangelistener()" - }, - { - "label": ".switchInputDevice()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/deviceManager.ts", - "source_location": "L168", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_devicemanager_devicemanager_switchinputdevice", - "community": 218, - "community_name": "DeviceManager", - "norm_label": ".switchinputdevice()" - }, - { - "label": ".switchOutputDevice()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/deviceManager.ts", - "source_location": "L203", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_devicemanager_devicemanager_switchoutputdevice", - "community": 218, - "community_name": "DeviceManager", - "norm_label": ".switchoutputdevice()" - }, - { - "label": "isMicPolicyGated()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/deviceManager.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_devicemanager_ismicpolicygated", - "community": 218, - "community_name": "DeviceManager", - "norm_label": "ismicpolicygated()" - }, - { - "label": ".applyMicMuteState()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1621", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_applymicmutestate", - "community": 218, - "community_name": "DeviceManager", - "norm_label": ".applymicmutestate()" - }, - { - "label": ".retryMicPermission()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1486", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_retrymicpermission", - "community": 218, - "community_name": "DeviceManager", - "norm_label": ".retrymicpermission()" - }, - { - "label": ".setDeafened()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1601", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_setdeafened", - "community": 218, - "community_name": "DeviceManager", - "norm_label": ".setdeafened()" - }, - { - "label": ".setMuted()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1585", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_setmuted", - "community": 218, - "community_name": "DeviceManager", - "norm_label": ".setmuted()" - }, - { - "label": "setLocalMuted()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L370", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_setlocalmuted", - "community": 218, - "community_name": "DeviceManager", - "norm_label": "setlocalmuted()" - }, - { - "label": "createTestHarness()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/test-harness.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_test_harness_createtestharness", - "community": 220, - "community_name": "TestHarness", - "norm_label": "createtestharness()" - }, - { - "label": ".destroy()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/test-harness.ts", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_test_harness_mountable_destroy", - "community": 220, - "community_name": "TestHarness", - "norm_label": ".destroy()" - }, - { - "label": ".mount()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/test-harness.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_test_harness_mountable_mount", - "community": 220, - "community_name": "TestHarness", - "norm_label": ".mount()" - }, - { - "label": ".cleanup()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/test-harness.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_test_harness_testharness_cleanup", - "community": 220, - "community_name": "TestHarness", - "norm_label": ".cleanup()" - }, - { - "label": ".click()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/test-harness.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_test_harness_testharness_click", - "community": 220, - "community_name": "TestHarness", - "norm_label": ".click()" - }, - { - "label": ".mount()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/test-harness.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_test_harness_testharness_mount", - "community": 220, - "community_name": "TestHarness", - "norm_label": ".mount()" - }, - { - "label": ".query()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/test-harness.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_test_harness_testharness_query", - "community": 220, - "community_name": "TestHarness", - "norm_label": ".query()" - }, - { - "label": ".queryAll()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/test-harness.ts", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_test_harness_testharness_queryall", - "community": 220, - "community_name": "TestHarness", - "norm_label": ".queryall()" - }, - { - "label": "mount()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/test-harness.test.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_test_harness_test_mount", - "community": 220, - "community_name": "TestHarness", - "norm_label": "mount()" - }, - { - "label": "mockTauriSessionWithDms()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/dm-system.spec.ts", - "source_location": "L66", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_dm_system_spec_mocktaurisessionwithdms", - "community": 231, - "community_name": "e2e/dm-system.spec.ts", - "norm_label": "mocktaurisessionwithdms()" - }, - { - "label": "navigateToMainPageWithDms()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/dm-system.spec.ts", - "source_location": "L91", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_dm_system_spec_navigatetomainpagewithdms", - "community": 231, - "community_name": "e2e/dm-system.spec.ts", - "norm_label": "navigatetomainpagewithdms()" - }, - { - "label": "emitWsEvent()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L956", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_emitwsevent", - "community": 231, - "community_name": "e2e/dm-system.spec.ts", - "norm_label": "emitwsevent()" - }, - { - "label": "emitWsMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L972", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_emitwsmessage", - "community": 231, - "community_name": "e2e/dm-system.spec.ts", - "norm_label": "emitwsmessage()" - }, - { - "label": "submitLogin()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L916", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_submitlogin", - "community": 231, - "community_name": "e2e/dm-system.spec.ts", - "norm_label": "submitlogin()" - }, - { - "label": "waitForWsReady()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L987", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_waitforwsready", - "community": 231, - "community_name": "e2e/dm-system.spec.ts", - "norm_label": "waitforwsready()" - }, - { - "label": "simulateReconnect()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/reconnection.spec.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_reconnection_spec_simulatereconnect", - "community": 231, - "community_name": "e2e/dm-system.spec.ts", - "norm_label": "simulatereconnect()" - }, - { - "label": "clientLogs()", - "file_type": "code", - "source_file": "tools/mcp-introspect/index.mjs", - "source_location": "L181", - "_callable": true, - "_origin": "ast", - "id": "tools_mcp_introspect_index_clientlogs", - "community": 240, - "community_name": "index.mjs", - "norm_label": "clientlogs()" - }, - { - "label": "collectLogs()", - "file_type": "code", - "source_file": "tools/mcp-introspect/index.mjs", - "source_location": "L106", - "_callable": true, - "_origin": "ast", - "id": "tools_mcp_introspect_index_collectlogs", - "community": 240, - "community_name": "index.mjs", - "norm_label": "collectlogs()" - }, - { - "label": "fail()", - "file_type": "code", - "source_file": "tools/mcp-introspect/index.mjs", - "source_location": "L197", - "_callable": true, - "_origin": "ast", - "id": "tools_mcp_introspect_index_fail", - "community": 240, - "community_name": "index.mjs", - "norm_label": "fail()" - }, - { - "label": "httpsAgent()", - "file_type": "code", - "source_file": "tools/mcp-introspect/index.mjs", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "tools_mcp_introspect_index_httpsagent", - "community": 240, - "community_name": "index.mjs", - "norm_label": "httpsagent()" - }, - { - "label": "ok()", - "file_type": "code", - "source_file": "tools/mcp-introspect/index.mjs", - "source_location": "L196", - "_callable": true, - "_origin": "ast", - "id": "tools_mcp_introspect_index_ok", - "community": 240, - "community_name": "index.mjs", - "norm_label": "ok()" - }, - { - "label": "readServerPort()", - "file_type": "code", - "source_file": "tools/mcp-introspect/index.mjs", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "tools_mcp_introspect_index_readserverport", - "community": 240, - "community_name": "index.mjs", - "norm_label": "readserverport()" - }, - { - "label": "request()", - "file_type": "code", - "source_file": "tools/mcp-introspect/index.mjs", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "id": "tools_mcp_introspect_index_request", - "community": 240, - "community_name": "index.mjs", - "norm_label": "request()" - }, - { - "label": "requireToken()", - "file_type": "code", - "source_file": "tools/mcp-introspect/index.mjs", - "source_location": "L66", - "_callable": true, - "_origin": "ast", - "id": "tools_mcp_introspect_index_requiretoken", - "community": 240, - "community_name": "index.mjs", - "norm_label": "requiretoken()" - }, - { - "label": "safeParse()", - "file_type": "code", - "source_file": "tools/mcp-introspect/index.mjs", - "source_location": "L173", - "_callable": true, - "_origin": "ast", - "id": "tools_mcp_introspect_index_safeparse", - "community": 240, - "community_name": "index.mjs", - "norm_label": "safeparse()" - }, - { - "label": "confirmAll()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.harness.mjs", - "source_location": "L76", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_harness_confirmall", - "community": 242, - "community_name": "bughunt.harness.mjs", - "norm_label": "confirmall()" - }, - { - "label": "defaultRecon()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.harness.mjs", - "source_location": "L60", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_harness_defaultrecon", - "community": 242, - "community_name": "bughunt.harness.mjs", - "norm_label": "defaultrecon()" - }, - { - "label": "finding()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.harness.mjs", - "source_location": "L64", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_harness_finding", - "community": 242, - "community_name": "bughunt.harness.mjs", - "norm_label": "finding()" - }, - { - "label": "graphRows()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.harness.mjs", - "source_location": "L74", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_harness_graphrows", - "community": 242, - "community_name": "bughunt.harness.mjs", - "norm_label": "graphrows()" - }, - { - "label": "makeStub()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.harness.mjs", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_harness_makestub", - "community": 242, - "community_name": "bughunt.harness.mjs", - "norm_label": "makestub()" - }, - { - "label": "refuteAll()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.harness.mjs", - "source_location": "L83", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_harness_refuteall", - "community": 242, - "community_name": "bughunt.harness.mjs", - "norm_label": "refuteall()" - }, - { - "label": "run()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.harness.mjs", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_harness_run", - "community": 242, - "community_name": "bughunt.harness.mjs", - "norm_label": "run()" - }, - { - "label": "close()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/voice-audio-tab.test.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_voice_audio_tab_test_close", - "community": 243, - "community_name": "voice-audio-tab.test.ts", - "norm_label": "close()" - }, - { - "label": "createAnalyser()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/voice-audio-tab.test.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_voice_audio_tab_test_createanalyser", - "community": 243, - "community_name": "voice-audio-tab.test.ts", - "norm_label": "createanalyser()" - }, - { - "label": "createMediaStreamSource()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/voice-audio-tab.test.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_voice_audio_tab_test_createmediastreamsource", - "community": 243, - "community_name": "voice-audio-tab.test.ts", - "norm_label": "createmediastreamsource()" - }, - { - "label": "stubNavigator()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/voice-audio-tab.test.ts", - "source_location": "L219", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_voice_audio_tab_test_stubnavigator", - "community": 243, - "community_name": "voice-audio-tab.test.ts", - "norm_label": "stubnavigator()" - }, - { - "label": "appendModerationSection()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/channel-sidebar/volume-menu.ts", - "source_location": "L148", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channel_sidebar_volume_menu_appendmoderationsection", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "appendmoderationsection()" - }, - { - "label": "showUserVolumeMenu()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/channel-sidebar/volume-menu.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channel_sidebar_volume_menu_showuservolumemenu", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "showuservolumemenu()" - }, - { - "label": "closeActiveLightbox()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/media.ts", - "source_location": "L352", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_media_closeactivelightbox", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "closeactivelightbox()" - }, - { - "label": "clearReactionUsersCache()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/reaction-tooltip.ts", - "source_location": "L83", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_reaction_tooltip_clearreactionuserscache", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "clearreactionuserscache()" - }, - { - "label": "setReactionUsersFetcher()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/reaction-tooltip.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_reaction_tooltip_setreactionusersfetcher", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "setreactionusersfetcher()" - }, - { - "label": "applyConnectionStatus()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ServerBanner.ts", - "source_location": "L76", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_serverbanner_applyconnectionstatus", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "applyconnectionstatus()" - }, - { - "label": "createServerBanner()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ServerBanner.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_serverbanner_createserverbanner", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "createserverbanner()" - }, - { - "label": ".destroy()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ServerBanner.ts", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_serverbanner_serverbannercontrol_destroy", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".destroy()" - }, - { - "label": ".hide()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ServerBanner.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_serverbanner_serverbannercontrol_hide", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".hide()" - }, - { - "label": ".showDisconnected()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ServerBanner.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_serverbanner_serverbannercontrol_showdisconnected", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".showdisconnected()" - }, - { - "label": ".showReconnecting()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ServerBanner.ts", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_serverbanner_serverbannercontrol_showreconnecting", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".showreconnecting()" - }, - { - "label": ".showRestart()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ServerBanner.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_serverbanner_serverbannercontrol_showrestart", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".showrestart()" - }, - { - "label": "createToastContainer()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/Toast.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_toast_createtoastcontainer", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "createtoastcontainer()" - }, - { - "label": ".clear()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/Toast.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_toast_toastcontainer_clear", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".clear()" - }, - { - "label": ".show()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/Toast.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_toast_toastcontainer_show", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".show()" - }, - { - "label": "computeGridLayout()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VideoGrid.ts", - "source_location": "L72", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_videogrid_computegridlayout", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "computegridlayout()" - }, - { - "label": "createVideoGrid()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VideoGrid.ts", - "source_location": "L108", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_videogrid_createvideogrid", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "createvideogrid()" - }, - { - "label": "setButtonIcon()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VideoGrid.ts", - "source_location": "L47", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_videogrid_setbuttonicon", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "setbuttonicon()" - }, - { - "label": ".addStream()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VideoGrid.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_videogrid_videogridcomponent_addstream", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".addstream()" - }, - { - "label": ".clearStreams()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VideoGrid.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_videogrid_videogridcomponent_clearstreams", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".clearstreams()" - }, - { - "label": ".getFocusedTileId()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VideoGrid.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_videogrid_videogridcomponent_getfocusedtileid", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".getfocusedtileid()" - }, - { - "label": ".hasStreams()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VideoGrid.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_videogrid_videogridcomponent_hasstreams", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".hasstreams()" - }, - { - "label": ".removeStream()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VideoGrid.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_videogrid_videogridcomponent_removestream", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".removestream()" - }, - { - "label": ".setFocusedTile()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VideoGrid.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_videogrid_videogridcomponent_setfocusedtile", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".setfocusedtile()" - }, - { - "label": "volumeIcon()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VideoGrid.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_videogrid_volumeicon", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "volumeicon()" - }, - { - "label": "volumeXIcon()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VideoGrid.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_videogrid_volumexicon", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "volumexicon()" - }, - { - "label": "setAudioVolumeHost()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_setaudiovolumehost", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "setaudiovolumehost()" - }, - { - "label": "createRingController()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/call-ring.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_call_ring_createringcontroller", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "createringcontroller()" - }, - { - "label": "logout()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logout.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logout_logout", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "logout()" - }, - { - "label": "hasMessageJumpHandler()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/message-navigation.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_message_navigation_hasmessagejumphandler", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "hasmessagejumphandler()" - }, - { - "label": "setMessageJumpHandler()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/message-navigation.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_message_navigation_setmessagejumphandler", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "setmessagejumphandler()" - }, - { - "label": ".close()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/modalFactory.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_modalfactory_modalinstance_close", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".close()" - }, - { - "label": "stopRingChime()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/notifications.ts", - "source_location": "L200", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_notifications_stopringchime", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "stopringchime()" - }, - { - "label": "setActivePresenceSender()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/presence.ts", - "source_location": "L114", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_presence_setactivepresencesender", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "setactivepresencesender()" - }, - { - "label": "initToast()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/toast.ts", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_toast_inittoast", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "inittoast()" - }, - { - "label": "showToast()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/toast.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_toast_showtoast", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "showtoast()" - }, - { - "label": "teardownToast()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/toast.ts", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_toast_teardowntoast", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "teardowntoast()" - }, - { - "label": "createChatArea()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ChatArea.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_chatarea_createchatarea", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "createchatarea()" - }, - { - "label": "attachGlobalKeybinds()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/GlobalKeybinds.ts", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_globalkeybinds_attachglobalkeybinds", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "attachglobalkeybinds()" - }, - { - "label": "inVoice()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/GlobalKeybinds.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_globalkeybinds_invoice", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "invoice()" - }, - { - "label": "createInviteManagerController()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/OverlayManagers.ts", - "source_location": "L154", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_overlaymanagers_createinvitemanagercontroller", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "createinvitemanagercontroller()" - }, - { - "label": "createPinnedPanelController()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/OverlayManagers.ts", - "source_location": "L235", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_overlaymanagers_createpinnedpanelcontroller", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "createpinnedpanelcontroller()" - }, - { - "label": "createQuickSwitcherManager()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/OverlayManagers.ts", - "source_location": "L93", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_overlaymanagers_createquickswitchermanager", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "createquickswitchermanager()" - }, - { - "label": "createSearchOverlayController()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/OverlayManagers.ts", - "source_location": "L326", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_overlaymanagers_createsearchoverlaycontroller", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "createsearchoverlaycontroller()" - }, - { - "label": ".cleanup()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/OverlayManagers.ts", - "source_location": "L151", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_overlaymanagers_invitemanagercontroller_cleanup", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".cleanup()" - }, - { - "label": ".open()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/OverlayManagers.ts", - "source_location": "L150", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_overlaymanagers_invitemanagercontroller_open", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".open()" - }, - { - "label": "isInviteRevoked()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/OverlayManagers.ts", - "source_location": "L51", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_overlaymanagers_isinviterevoked", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "isinviterevoked()" - }, - { - "label": "mapInviteResponse()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/OverlayManagers.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_overlaymanagers_mapinviteresponse", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "mapinviteresponse()" - }, - { - "label": "mapToPinnedMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/OverlayManagers.ts", - "source_location": "L68", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_overlaymanagers_maptopinnedmessage", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "maptopinnedmessage()" - }, - { - "label": "pickPinAvatarColor()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/OverlayManagers.ts", - "source_location": "L59", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_overlaymanagers_pickpinavatarcolor", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "pickpinavatarcolor()" - }, - { - "label": ".cleanup()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/OverlayManagers.ts", - "source_location": "L232", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_overlaymanagers_pinnedpanelcontroller_cleanup", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".cleanup()" - }, - { - "label": ".toggle()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/OverlayManagers.ts", - "source_location": "L231", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_overlaymanagers_pinnedpanelcontroller_toggle", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".toggle()" - }, - { - "label": ".attach()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/OverlayManagers.ts", - "source_location": "L90", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_overlaymanagers_quickswitchermanager_attach", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".attach()" - }, - { - "label": ".cleanup()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/OverlayManagers.ts", - "source_location": "L323", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_overlaymanagers_searchoverlaycontroller_cleanup", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".cleanup()" - }, - { - "label": ".open()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/OverlayManagers.ts", - "source_location": "L322", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_overlaymanagers_searchoverlaycontroller_open", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": ".open()" - }, - { - "label": "createMainPage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/MainPage.ts", - "source_location": "L88", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_mainpage_createmainpage", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "createmainpage()" - }, - { - "label": "harness()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/call-ring.test.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_call_ring_test_harness", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "harness()" - }, - { - "label": "ring()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/call-ring.test.ts", - "source_location": "L47", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_call_ring_test_ring", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "ring()" - }, - { - "label": "makeOptions()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/chat-area.test.ts", - "source_location": "L89", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_chat_area_test_makeoptions", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "makeoptions()" - }, - { - "label": "incoming()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/dispatcher.test.ts", - "source_location": "L660", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_dispatcher_test_incoming", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "incoming()" - }, - { - "label": "makeApi()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/logout.test.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_logout_test_makeapi", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "makeapi()" - }, - { - "label": "makeInviteResponse()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/overlay-managers.test.ts", - "source_location": "L108", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_overlay_managers_test_makeinviteresponse", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "makeinviteresponse()" - }, - { - "label": "makeMockApi()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/overlay-managers.test.ts", - "source_location": "L120", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_overlay_managers_test_makemockapi", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "makemockapi()" - }, - { - "label": "makeMockToast()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/overlay-managers.test.ts", - "source_location": "L138", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_overlay_managers_test_makemocktoast", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "makemocktoast()" - }, - { - "label": "createMockContainer()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/toast-coverage.test.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_toast_coverage_test_createmockcontainer", - "community": 252, - "community_name": "MainPage.ts", - "norm_label": "createmockcontainer()" - }, - { - "label": ".getCurrentPage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/cert-reconnect.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_cert_reconnect_certreconnectrouter_getcurrentpage", - "community": 253, - "community_name": "reconnectAfterCertAccept", - "norm_label": ".getcurrentpage()" - }, - { - "label": ".navigate()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/cert-reconnect.ts", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_cert_reconnect_certreconnectrouter_navigate", - "community": 253, - "community_name": "reconnectAfterCertAccept", - "norm_label": ".navigate()" - }, - { - "label": ".connect()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/cert-reconnect.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_cert_reconnect_certreconnectws_connect", - "community": 253, - "community_name": "reconnectAfterCertAccept", - "norm_label": ".connect()" - }, - { - "label": ".onStateChange()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/cert-reconnect.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_cert_reconnect_certreconnectws_onstatechange", - "community": 253, - "community_name": "reconnectAfterCertAccept", - "norm_label": ".onstatechange()" - }, - { - "label": "reconnectAfterCertAccept()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/cert-reconnect.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_cert_reconnect_reconnectaftercertaccept", - "community": 253, - "community_name": "reconnectAfterCertAccept", - "norm_label": "reconnectaftercertaccept()" - }, - { - "label": "fakeWs()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/cert-reconnect.test.ts", - "source_location": "L4", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_cert_reconnect_test_fakews", - "community": 253, - "community_name": "reconnectAfterCertAccept", - "norm_label": "fakews()" - }, - { - "label": "captureScript()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/emoji-voicemod.parity.spec.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_emoji_voicemod_parity_spec_capturescript", - "community": 255, - "community_name": "emoji-voicemod.parity.spec.ts", - "norm_label": "capturescript()" - }, - { - "label": "getCapturedCalls()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/emoji-voicemod.parity.spec.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_emoji_voicemod_parity_spec_getcapturedcalls", - "community": 255, - "community_name": "emoji-voicemod.parity.spec.ts", - "norm_label": "getcapturedcalls()" - }, - { - "label": "mockSessionWithCustomEmoji()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/emoji-voicemod.parity.spec.ts", - "source_location": "L93", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_emoji_voicemod_parity_spec_mocksessionwithcustomemoji", - "community": 255, - "community_name": "emoji-voicemod.parity.spec.ts", - "norm_label": "mocksessionwithcustomemoji()" - }, - { - "label": "mockVoiceSessionWithoutModPermission()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/emoji-voicemod.parity.spec.ts", - "source_location": "L259", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_emoji_voicemod_parity_spec_mockvoicesessionwithoutmodpermission", - "community": 255, - "community_name": "emoji-voicemod.parity.spec.ts", - "norm_label": "mockvoicesessionwithoutmodpermission()" - }, - { - "label": "waitForCapturedCall()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/emoji-voicemod.parity.spec.ts", - "source_location": "L69", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_emoji_voicemod_parity_spec_waitforcapturedcall", - "community": 255, - "community_name": "emoji-voicemod.parity.spec.ts", - "norm_label": "waitforcapturedcall()" - }, - { - "label": "emitWsMessageAndWait()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L1028", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_emitwsmessageandwait", - "community": 255, - "community_name": "emoji-voicemod.parity.spec.ts", - "norm_label": "emitwsmessageandwait()" - }, - { - "label": "mockTauriFullSessionWithVoice()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L807", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_mocktaurifullsessionwithvoice", - "community": 255, - "community_name": "emoji-voicemod.parity.spec.ts", - "norm_label": "mocktaurifullsessionwithvoice()" - }, - { - "label": "voiceWsHandlers()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L353", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_voicewshandlers", - "community": 255, - "community_name": "emoji-voicemod.parity.spec.ts", - "norm_label": "voicewshandlers()" - }, - { - "label": "joinVoiceChannelByName()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L1009", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_joinvoicechannelbyname", - "community": 256, - "community_name": "voice-e2ee-verify.spec.ts", - "norm_label": "joinvoicechannelbyname()" - }, - { - "label": "emitPeerAnnounce()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/voice-e2ee-verify.spec.ts", - "source_location": "L165", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_voice_e2ee_verify_spec_emitpeerannounce", - "community": 256, - "community_name": "voice-e2ee-verify.spec.ts", - "norm_label": "emitpeerannounce()" - }, - { - "label": "invokesOf()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/voice-e2ee-verify.spec.ts", - "source_location": "L182", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_voice_e2ee_verify_spec_invokesof", - "community": 256, - "community_name": "voice-e2ee-verify.spec.ts", - "norm_label": "invokesof()" - }, - { - "label": "makePeerCrypto()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/voice-e2ee-verify.spec.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_voice_e2ee_verify_spec_makepeercrypto", - "community": 256, - "community_name": "voice-e2ee-verify.spec.ts", - "norm_label": "makepeercrypto()" - }, - { - "label": "mockE2EEVoiceSession()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/voice-e2ee-verify.spec.ts", - "source_location": "L104", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_voice_e2ee_verify_spec_mocke2eevoicesession", - "community": 256, - "community_name": "voice-e2ee-verify.spec.ts", - "norm_label": "mocke2eevoicesession()" - }, - { - "label": "peerBadge()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/voice-e2ee-verify.spec.ts", - "source_location": "L194", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_voice_e2ee_verify_spec_peerbadge", - "community": 256, - "community_name": "voice-e2ee-verify.spec.ts", - "norm_label": "peerbadge()" - }, - { - "label": "voiceJoinWithTokenHandler()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/voice-e2ee-verify.spec.ts", - "source_location": "L81", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_voice_e2ee_verify_spec_voicejoinwithtokenhandler", - "community": 256, - "community_name": "voice-e2ee-verify.spec.ts", - "norm_label": "voicejoinwithtokenhandler()" - }, - { - "label": "fixAll()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt-fix.harness.mjs", - "source_location": "L659", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_fix_harness_fixall", - "community": 266, - "community_name": "bughunt-fix.harness.mjs", - "norm_label": "fixall()" - }, - { - "label": "proveOk()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt-fix.harness.mjs", - "source_location": "L672", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_fix_harness_proveok", - "community": 266, - "community_name": "bughunt-fix.harness.mjs", - "norm_label": "proveok()" - }, - { - "label": "rec()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt-fix.harness.mjs", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_fix_harness_rec", - "community": 266, - "community_name": "bughunt-fix.harness.mjs", - "norm_label": "rec()" - }, - { - "label": "run()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt-fix.harness.mjs", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_fix_harness_run", - "community": 266, - "community_name": "bughunt-fix.harness.mjs", - "norm_label": "run()" - }, - { - "label": "createRouter()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/router.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_router_createrouter", - "community": 267, - "community_name": "router.ts", - "norm_label": "createrouter()" - }, - { - "label": ".getCurrentPage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/router.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_router_router_getcurrentpage", - "community": 267, - "community_name": "router.ts", - "norm_label": ".getcurrentpage()" - }, - { - "label": ".navigate()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/router.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_router_router_navigate", - "community": 267, - "community_name": "router.ts", - "norm_label": ".navigate()" - }, - { - "label": ".onNavigate()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/router.ts", - "source_location": "L19", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_router_router_onnavigate", - "community": 267, - "community_name": "router.ts", - "norm_label": ".onnavigate()" - }, - { - "label": "main()", - "file_type": "code", - "source_file": ".superpowers/render-ledger.mjs", - "source_location": "L83", - "_callable": true, - "_origin": "ast", - "id": "superpowers_render_ledger_main", - "community": 269, - "community_name": "render-ledger.mjs", - "norm_label": "main()" - }, - { - "label": "render()", - "file_type": "code", - "source_file": ".superpowers/render-ledger.mjs", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "superpowers_render_ledger_render", - "community": 269, - "community_name": "render-ledger.mjs", - "norm_label": "render()" - }, - { - "label": "selftest()", - "file_type": "code", - "source_file": ".superpowers/render-ledger.mjs", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "superpowers_render_ledger_selftest", - "community": 269, - "community_name": "render-ledger.mjs", - "norm_label": "selftest()" - }, - { - "label": "validate()", - "file_type": "code", - "source_file": ".superpowers/render-ledger.mjs", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "superpowers_render_ledger_validate", - "community": 269, - "community_name": "render-ledger.mjs", - "norm_label": "validate()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/fenwick.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_fenwick_fenwicktree_constructor", - "community": 292, - "community_name": "FenwickTree", - "norm_label": ".constructor()" - }, - { - "label": ".findIndex()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/fenwick.ts", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_fenwick_fenwicktree_findindex", - "community": 292, - "community_name": "FenwickTree", - "norm_label": ".findindex()" - }, - { - "label": ".get()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/fenwick.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_fenwick_fenwicktree_get", - "community": 292, - "community_name": "FenwickTree", - "norm_label": ".get()" - }, - { - "label": ".prefixSum()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/fenwick.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_fenwick_fenwicktree_prefixsum", - "community": 292, - "community_name": "FenwickTree", - "norm_label": ".prefixsum()" - }, - { - "label": ".set()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/fenwick.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_fenwick_fenwicktree_set", - "community": 292, - "community_name": "FenwickTree", - "norm_label": ".set()" - }, - { - "label": ".total()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/fenwick.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_fenwick_fenwicktree_total", - "community": 292, - "community_name": "FenwickTree", - "norm_label": ".total()" - }, - { - "label": "find()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/capabilities-scope.test.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_capabilities_scope_test_find", - "community": 296, - "community_name": "capabilities-scope.test.ts", - "norm_label": "find()" - }, - { - "label": "urls()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/capabilities-scope.test.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_capabilities_scope_test_urls", - "community": 296, - "community_name": "capabilities-scope.test.ts", - "norm_label": "urls()" - }, - { - "label": "invalidateReactionUsers()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/reaction-tooltip.ts", - "source_location": "L70", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_reaction_tooltip_invalidatereactionusers", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "invalidatereactionusers()" - }, - { - "label": ".applyAllVolumes()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L225", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_audioelements_applyallvolumes", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".applyallvolumes()" - }, - { - "label": ".applyRemoteAudioSubscriptionState()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L209", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_audioelements_applyremoteaudiosubscriptionstate", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".applyremoteaudiosubscriptionstate()" - }, - { - "label": ".cleanupAllAudioElements()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L302", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_audioelements_cleanupallaudioelements", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".cleanupallaudioelements()" - }, - { - "label": ".cleanupAllAudioElementsFull()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L321", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_audioelements_cleanupallaudioelementsfull", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".cleanupallaudioelementsfull()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L81", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_audioelements_constructor", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".constructor()" - }, - { - "label": ".getEffectiveScreenshareVolume()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L103", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_audioelements_geteffectivescreensharevolume", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".geteffectivescreensharevolume()" - }, - { - "label": ".getEffectiveVolume()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L95", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_audioelements_geteffectivevolume", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".geteffectivevolume()" - }, - { - "label": ".getOutputVolumeMultiplier()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L90", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_audioelements_getoutputvolumemultiplier", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".getoutputvolumemultiplier()" - }, - { - "label": ".getScreenshareAudioMuted()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L289", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_audioelements_getscreenshareaudiomuted", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".getscreenshareaudiomuted()" - }, - { - "label": ".getScreenshareAudioVolume()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L278", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_audioelements_getscreenshareaudiovolume", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".getscreenshareaudiovolume()" - }, - { - "label": ".getUserVolume()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L245", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_audioelements_getuservolume", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".getuservolume()" - }, - { - "label": ".handleTrackSubscribedAudio()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L110", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_audioelements_handletracksubscribedaudio", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".handletracksubscribedaudio()" - }, - { - "label": ".handleTrackUnsubscribedAudio()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L182", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_audioelements_handletrackunsubscribedaudio", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".handletrackunsubscribedaudio()" - }, - { - "label": ".muteScreenshareAudio()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L282", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_audioelements_mutescreenshareaudio", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".mutescreenshareaudio()" - }, - { - "label": ".setOutputVolume()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L249", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_audioelements_setoutputvolume", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".setoutputvolume()" - }, - { - "label": ".setRoom()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L85", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_audioelements_setroom", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".setroom()" - }, - { - "label": ".setScreenshareAudioVolume()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L266", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_audioelements_setscreenshareaudiovolume", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".setscreenshareaudiovolume()" - }, - { - "label": ".setUserVolume()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L233", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_audioelements_setuservolume", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".setuservolume()" - }, - { - "label": "userVolumeKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/audioElements.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_audioelements_uservolumekey", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "uservolumekey()" - }, - { - "label": "enforceModeratorAudioState()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/dispatcher.ts", - "source_location": "L126", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_dispatcher_enforcemoderatoraudiostate", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "enforcemoderatoraudiostate()" - }, - { - "label": "livekitSession()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/dispatcher.ts", - "source_location": "L107", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_dispatcher_livekitsession", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "livekitsession()" - }, - { - "label": "mapDmPayload()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/dispatcher.ts", - "source_location": "L150", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_dispatcher_mapdmpayload", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "mapdmpayload()" - }, - { - "label": "mapDmUser()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/dispatcher.ts", - "source_location": "L139", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_dispatcher_mapdmuser", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "mapdmuser()" - }, - { - "label": "wireConnectionStatus()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/dispatcher.ts", - "source_location": "L178", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_dispatcher_wireconnectionstatus", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "wireconnectionstatus()" - }, - { - "label": "wireDispatcher()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/dispatcher.ts", - "source_location": "L190", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_dispatcher_wiredispatcher", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "wiredispatcher()" - }, - { - "label": "buildSessionDebugInfo()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitDiagnostics.ts", - "source_location": "L136", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitdiagnostics_buildsessiondebuginfo", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "buildsessiondebuginfo()" - }, - { - "label": "getIceConnectionState()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitDiagnostics.ts", - "source_location": "L97", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitdiagnostics_geticeconnectionstate", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "geticeconnectionstate()" - }, - { - "label": "isVoiceConnected()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1803", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_isvoiceconnected", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "isvoiceconnected()" - }, - { - "label": ".getRoom()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1738", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_getroom", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".getroom()" - }, - { - "label": ".getSessionDebugInfo()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1742", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_getsessiondebuginfo", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".getsessiondebuginfo()" - }, - { - "label": ".restoreLocalVoiceState()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L877", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_restorelocalvoicestate", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".restorelocalvoicestate()" - }, - { - "label": "parseUserId()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L66", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_parseuserid", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "parseuserid()" - }, - { - "label": "createLogger()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/logger.ts", - "source_location": "L96", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_logger_createlogger", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "createlogger()" - }, - { - "label": "jumpToMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/message-navigation.ts", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_message_navigation_jumptomessage", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "jumptomessage()" - }, - { - "label": "createNavigationGuard()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/navigation-guard.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_navigation_guard_createnavigationguard", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "createnavigationguard()" - }, - { - "label": ".begin()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/navigation-guard.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_navigation_guard_navigationguard_begin", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": ".begin()" - }, - { - "label": "cleanupNotificationAudio()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/notifications.ts", - "source_location": "L172", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_notifications_cleanupnotificationaudio", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "cleanupnotificationaudio()" - }, - { - "label": "getActivePresenceSender()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/presence.ts", - "source_location": "L120", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_presence_getactivepresencesender", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "getactivepresencesender()" - }, - { - "label": "initPtt()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ptt.ts", - "source_location": "L127", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ptt_initptt", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "initptt()" - }, - { - "label": "stopPtt()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ptt.ts", - "source_location": "L235", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ptt_stopptt", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "stopptt()" - }, - { - "label": "ungateMic()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ptt.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ptt_ungatemic", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "ungatemic()" - }, - { - "label": "updatePttKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ptt.ts", - "source_location": "L264", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ptt_updatepttkey", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "updatepttkey()" - }, - { - "label": "vkName()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ptt.ts", - "source_location": "L115", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ptt_vkname", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "vkname()" - }, - { - "label": "createRoomEventHandlers()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/roomEventHandlers.ts", - "source_location": "L78", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_roomeventhandlers_createroomeventhandlers", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "createroomeventhandlers()" - }, - { - "label": "setActiveChannelProvider()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ws.ts", - "source_location": "L108", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ws_setactivechannelprovider", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "setactivechannelprovider()" - }, - { - "label": "toConnectionStatus()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ws.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ws_toconnectionstatus", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "toconnectionstatus()" - }, - { - "label": "destroy()", - "file_type": "code", - "source_file": "Client/tauri-client/src/main.ts", - "source_location": "L276", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_main_destroy", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "destroy()" - }, - { - "label": "handleInviteDeepLink()", - "file_type": "code", - "source_file": "Client/tauri-client/src/main.ts", - "source_location": "L842", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_main_handleinvitedeeplink", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "handleinvitedeeplink()" - }, - { - "label": "handleMessageDeepLink()", - "file_type": "code", - "source_file": "Client/tauri-client/src/main.ts", - "source_location": "L888", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_main_handlemessagedeeplink", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "handlemessagedeeplink()" - }, - { - "label": "voiceSessionLeave()", - "file_type": "code", - "source_file": "Client/tauri-client/src/main.ts", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_main_voicesessionleave", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "voicesessionleave()" - }, - { - "label": "clearAuth()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/auth.store.ts", - "source_location": "L80", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_auth_store_clearauth", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "clearauth()" - }, - { - "label": "setAuth()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/auth.store.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_auth_store_setauth", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "setauth()" - }, - { - "label": "updateUser()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/auth.store.ts", - "source_location": "L119", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_auth_store_updateuser", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "updateuser()" - }, - { - "label": "clearBlockedByThem()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/blocks.store.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_blocks_store_clearblockedbythem", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "clearblockedbythem()" - }, - { - "label": "dmComposerBlockReason()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/blocks.store.ts", - "source_location": "L78", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_blocks_store_dmcomposerblockreason", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "dmcomposerblockreason()" - }, - { - "label": "resetBlocksStore()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/blocks.store.ts", - "source_location": "L70", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_blocks_store_resetblocksstore", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "resetblocksstore()" - }, - { - "label": "setBlockedByMe()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/blocks.store.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_blocks_store_setblockedbyme", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "setblockedbyme()" - }, - { - "label": "setUserBlockedByMe()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/blocks.store.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_blocks_store_setuserblockedbyme", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "setuserblockedbyme()" - }, - { - "label": "setUserBlockedByThem()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/blocks.store.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_blocks_store_setuserblockedbythem", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "setuserblockedbythem()" - }, - { - "label": "incrementDmMention()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/dm.store.ts", - "source_location": "L236", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_dm_store_incrementdmmention", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "incrementdmmention()" - }, - { - "label": "resetMessagesStore()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L935", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_resetmessagesstore", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "resetmessagesstore()" - }, - { - "label": "clearPeerVerification()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L517", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_clearpeerverification", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "clearpeerverification()" - }, - { - "label": "clearPeerVerifications()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L536", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_clearpeerverifications", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "clearpeerverifications()" - }, - { - "label": "isPttPollingLive()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L417", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_ispttpollinglive", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "ispttpollinglive()" - }, - { - "label": "joinVoiceChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L300", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_joinvoicechannel", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "joinvoicechannel()" - }, - { - "label": "leaveVoiceChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L319", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_leavevoicechannel", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "leavevoicechannel()" - }, - { - "label": "removeVoiceUser()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L279", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_removevoiceuser", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "removevoiceuser()" - }, - { - "label": "resetVoiceStore()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L141", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_resetvoicestore", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "resetvoicestore()" - }, - { - "label": "setEncryptionDegraded()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L363", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_setencryptiondegraded", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "setencryptiondegraded()" - }, - { - "label": "setListenOnly()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L438", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_setlistenonly", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "setlistenonly()" - }, - { - "label": "setLocalDeafened()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L378", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_setlocaldeafened", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "setlocaldeafened()" - }, - { - "label": "setLocalSpeaking()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L446", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_setlocalspeaking", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "setlocalspeaking()" - }, - { - "label": "setPeerVerification()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L508", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_setpeerverification", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "setpeerverification()" - }, - { - "label": "setPttGated()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L389", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_setpttgated", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "setpttgated()" - }, - { - "label": "setPttPollingLive()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L412", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_setpttpollinglive", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "setpttpollinglive()" - }, - { - "label": "setSpeakers()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L483", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_setspeakers", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "setspeakers()" - }, - { - "label": "setVoiceConfig()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L465", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_setvoiceconfig", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "setvoiceconfig()" - }, - { - "label": "setVoiceStates()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L162", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_setvoicestates", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "setvoicestates()" - }, - { - "label": "updateVoiceState()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L222", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_updatevoicestate", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "updatevoicestate()" - }, - { - "label": "updateVoiceUserProfile()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L262", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_updatevoiceuserprofile", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "updatevoiceuserprofile()" - }, - { - "label": "createMockWsClient()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/integration/stores.test.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_integration_stores_test_createmockwsclient", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "createmockwsclient()" - }, - { - "label": "resetAllStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/integration/stores.test.ts", - "source_location": "L112", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_integration_stores_test_resetallstores", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "resetallstores()" - }, - { - "label": "createMockTrack()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/audio-elements.test.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_audio_elements_test_createmocktrack", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "createmocktrack()" - }, - { - "label": "makeHandlers()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/global-keybinds.test.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_global_keybinds_test_makehandlers", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "makehandlers()" - }, - { - "label": "press()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/global-keybinds.test.ts", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_global_keybinds_test_press", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "press()" - }, - { - "label": "engine()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/livekit-diagnostics.test.ts", - "source_location": "L206", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_livekit_diagnostics_test_engine", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "engine()" - }, - { - "label": "fakeElements()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/livekit-diagnostics.test.ts", - "source_location": "L76", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_livekit_diagnostics_test_fakeelements", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "fakeelements()" - }, - { - "label": "fakePeerConnection()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/livekit-diagnostics.test.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_livekit_diagnostics_test_fakepeerconnection", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "fakepeerconnection()" - }, - { - "label": "fakePipeline()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/livekit-diagnostics.test.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_livekit_diagnostics_test_fakepipeline", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "fakepipeline()" - }, - { - "label": "fakeRoom()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/livekit-diagnostics.test.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_livekit_diagnostics_test_fakeroom", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "fakeroom()" - }, - { - "label": "withEngine()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/livekit-diagnostics.test.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_livekit_diagnostics_test_withengine", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "withengine()" - }, - { - "label": "createDeferred()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/livekit-session.test.ts", - "source_location": "L235", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_livekit_session_test_createdeferred", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "createdeferred()" - }, - { - "label": "joinAsKeyHolder()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/livekit-session.test.ts", - "source_location": "L3216", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_livekit_session_test_joinaskeyholder", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "joinaskeyholder()" - }, - { - "label": "offerSends()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/livekit-session.test.ts", - "source_location": "L3222", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_livekit_session_test_offersends", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "offersends()" - }, - { - "label": "seedPeer()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/livekit-session.test.ts", - "source_location": "L3204", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_livekit_session_test_seedpeer", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "seedpeer()" - }, - { - "label": "statusCalls()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/livekit-session.test.ts", - "source_location": "L927", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_livekit_session_test_statuscalls", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "statuscalls()" - }, - { - "label": "renderPage()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/navigation-guard.test.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_navigation_guard_test_renderpage", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "renderpage()" - }, - { - "label": "resetAll()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/ptt.test.ts", - "source_location": "L104", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_ptt_test_resetall", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "resetall()" - }, - { - "label": "audioTrack()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/room-event-handlers.test.ts", - "source_location": "L118", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_room_event_handlers_test_audiotrack", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "audiotrack()" - }, - { - "label": "build()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/room-event-handlers.test.ts", - "source_location": "L72", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_room_event_handlers_test_build", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "build()" - }, - { - "label": "constructor()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/room-event-handlers.test.ts", - "source_location": "L155", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_room_event_handlers_test_constructor", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "constructor()" - }, - { - "label": "fakeAudioElements()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/room-event-handlers.test.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_room_event_handlers_test_fakeaudioelements", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "fakeaudioelements()" - }, - { - "label": "participant()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/room-event-handlers.test.ts", - "source_location": "L140", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_room_event_handlers_test_participant", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "participant()" - }, - { - "label": "pub()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/room-event-handlers.test.ts", - "source_location": "L136", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_room_event_handlers_test_pub", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "pub()" - }, - { - "label": "seedVoiceUsers()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/room-event-handlers.test.ts", - "source_location": "L365", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_room_event_handlers_test_seedvoiceusers", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "seedvoiceusers()" - }, - { - "label": "speaker()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/room-event-handlers.test.ts", - "source_location": "L361", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_room_event_handlers_test_speaker", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "speaker()" - }, - { - "label": "videoTrack()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/room-event-handlers.test.ts", - "source_location": "L127", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_room_event_handlers_test_videotrack", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "videotrack()" - }, - { - "label": "resetStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/voice-disconnect.test.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_voice_disconnect_test_resetstores", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "resetstores()" - }, - { - "label": "resetStore()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/voice.store.test.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_voice_store_test_resetstore", - "community": 3, - "community_name": "livekitSession.ts", - "norm_label": "resetstore()" - }, - { - "label": ".onCameraToggle()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VoiceWidget.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_voicewidget_voicewidgetoptions_oncameratoggle", - "community": 315, - "community_name": "VoiceWidgetOptions", - "norm_label": ".oncameratoggle()" - }, - { - "label": ".onDeafenToggle()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VoiceWidget.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_voicewidget_voicewidgetoptions_ondeafentoggle", - "community": 315, - "community_name": "VoiceWidgetOptions", - "norm_label": ".ondeafentoggle()" - }, - { - "label": ".onDisconnect()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VoiceWidget.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_voicewidget_voicewidgetoptions_ondisconnect", - "community": 315, - "community_name": "VoiceWidgetOptions", - "norm_label": ".ondisconnect()" - }, - { - "label": ".onMuteToggle()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VoiceWidget.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_voicewidget_voicewidgetoptions_onmutetoggle", - "community": 315, - "community_name": "VoiceWidgetOptions", - "norm_label": ".onmutetoggle()" - }, - { - "label": ".onScreenshareToggle()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VoiceWidget.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_voicewidget_voicewidgetoptions_onscreensharetoggle", - "community": 315, - "community_name": "VoiceWidgetOptions", - "norm_label": ".onscreensharetoggle()" - }, - { - "label": "emitCertTofu()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/cert-tofu.spec.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_cert_tofu_spec_emitcerttofu", - "community": 317, - "community_name": "cert-tofu.spec.ts", - "norm_label": "emitcerttofu()" - }, - { - "label": "mockTauriFullSessionWithVoiceFailure()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L826", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_mocktaurifullsessionwithvoicefailure", - "community": 318, - "community_name": "navigateToMainPageReady", - "norm_label": "mocktaurifullsessionwithvoicefailure()" - }, - { - "label": "navigateToMainPageReady()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L998", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_navigatetomainpageready", - "community": 318, - "community_name": "navigateToMainPageReady", - "norm_label": "navigatetomainpageready()" - }, - { - "label": "voiceJoinFailureHandler()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L412", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_voicejoinfailurehandler", - "community": 318, - "community_name": "navigateToMainPageReady", - "norm_label": "voicejoinfailurehandler()" - }, - { - "label": "banner()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/updater.spec.ts", - "source_location": "L90", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_updater_spec_banner", - "community": 318, - "community_name": "navigateToMainPageReady", - "norm_label": "banner()" - }, - { - "label": "bannerText()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/updater.spec.ts", - "source_location": "L91", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_updater_spec_bannertext", - "community": 318, - "community_name": "navigateToMainPageReady", - "norm_label": "bannertext()" - }, - { - "label": "emitProgress()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/updater.spec.ts", - "source_location": "L74", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_updater_spec_emitprogress", - "community": 318, - "community_name": "navigateToMainPageReady", - "norm_label": "emitprogress()" - }, - { - "label": "mockUpdaterSession()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/updater.spec.ts", - "source_location": "L19", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_updater_spec_mockupdatersession", - "community": 318, - "community_name": "navigateToMainPageReady", - "norm_label": "mockupdatersession()" - }, - { - "label": "waitForInstallHandles()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/updater.spec.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_updater_spec_waitforinstallhandles", - "community": 318, - "community_name": "navigateToMainPageReady", - "norm_label": "waitforinstallhandles()" - }, - { - "label": "createVoiceWidget()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VoiceWidget.ts", - "source_location": "L70", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_voicewidget_createvoicewidget", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "createvoicewidget()" - }, - { - "label": "formatElapsed()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/VoiceWidget.ts", - "source_location": "L60", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_voicewidget_formatelapsed", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "formatelapsed()" - }, - { - "label": "navigateToChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/channel-navigation.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_channel_navigation_navigatetochannel", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "navigatetochannel()" - }, - { - "label": "formatBitrate()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/connectionStats.ts", - "source_location": "L249", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_connectionstats_formatbitrate", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "formatbitrate()" - }, - { - "label": "createSignalIcon()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/icons.ts", - "source_location": "L263", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_icons_createsignalicon", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "createsignalicon()" - }, - { - "label": "getRoomForStats()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1807", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_getroomforstats", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "getroomforstats()" - }, - { - "label": "cancelPendingMarkAll()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/read-state.ts", - "source_location": "L93", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_read_state_cancelpendingmarkall", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "cancelpendingmarkall()" - }, - { - "label": "markAllRead()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/read-state.ts", - "source_location": "L125", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_read_state_markallread", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "markallread()" - }, - { - "label": "markChannelRead()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/read-state.ts", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_read_state_markchannelread", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "markchannelread()" - }, - { - "label": "setMarkReadSender()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/read-state.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_read_state_setmarkreadsender", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "setmarkreadsender()" - }, - { - "label": "unreadChannelIds()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/read-state.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_read_state_unreadchannelids", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "unreadchannelids()" - }, - { - "label": "unreadTotal()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/read-state.ts", - "source_location": "L100", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_read_state_unreadtotal", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "unreadtotal()" - }, - { - "label": "isTextLikeChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_types_istextlikechannel", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "istextlikechannel()" - }, - { - "label": "createSidebarArea()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/SidebarArea.ts", - "source_location": "L87", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_sidebararea_createsidebararea", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "createsidebararea()" - }, - { - "label": "addDmToChannelsStore()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/SidebarDmHelpers.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_sidebardmhelpers_adddmtochannelsstore", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "adddmtochannelsstore()" - }, - { - "label": "buildDmConversations()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/SidebarDmHelpers.ts", - "source_location": "L213", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_sidebardmhelpers_builddmconversations", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "builddmconversations()" - }, - { - "label": "dmChannelFromPayload()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/SidebarDmHelpers.ts", - "source_location": "L153", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_sidebardmhelpers_dmchannelfrompayload", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "dmchannelfrompayload()" - }, - { - "label": "handleCreateDm()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/SidebarDmHelpers.ts", - "source_location": "L108", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_sidebardmhelpers_handlecreatedm", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "handlecreatedm()" - }, - { - "label": "handleCreateGroupDm()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/SidebarDmHelpers.ts", - "source_location": "L186", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_sidebardmhelpers_handlecreategroupdm", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "handlecreategroupdm()" - }, - { - "label": "selectDmConversation()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/SidebarDmHelpers.ts", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_sidebardmhelpers_selectdmconversation", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "selectdmconversation()" - }, - { - "label": "createSidebarMemberSection()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/SidebarMemberSection.ts", - "source_location": "L47", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_sidebarmembersection_createsidebarmembersection", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "createsidebarmembersection()" - }, - { - "label": "createSidebarVoiceCallbacks()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/VoiceCallbacks.ts", - "source_location": "L177", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_voicecallbacks_createsidebarvoicecallbacks", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "createsidebarvoicecallbacks()" - }, - { - "label": "createVoiceModerationCallbacks()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/VoiceCallbacks.ts", - "source_location": "L146", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_voicecallbacks_createvoicemoderationcallbacks", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "createvoicemoderationcallbacks()" - }, - { - "label": "createVoiceWidgetCallbacks()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/VoiceCallbacks.ts", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_voicecallbacks_createvoicewidgetcallbacks", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "createvoicewidgetcallbacks()" - }, - { - "label": "socketLive()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/VoiceCallbacks.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_voicecallbacks_socketlive", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "socketlive()" - }, - { - "label": "tryConsume()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/VoiceCallbacks.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_voicecallbacks_tryconsume", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "tryconsume()" - }, - { - "label": "addChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/channels.store.ts", - "source_location": "L154", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_channels_store_addchannel", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "addchannel()" - }, - { - "label": "clearUnread()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/channels.store.ts", - "source_location": "L381", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_channels_store_clearunread", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "clearunread()" - }, - { - "label": "displayCategoryOf()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/channels.store.ts", - "source_location": "L293", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_channels_store_displaycategoryof", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "displaycategoryof()" - }, - { - "label": "getActiveChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/channels.store.ts", - "source_location": "L272", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_channels_store_getactivechannel", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "getactivechannel()" - }, - { - "label": "getChannelsByCategory()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/channels.store.ts", - "source_location": "L315", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_channels_store_getchannelsbycategory", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "getchannelsbycategory()" - }, - { - "label": "getRoleIdByName()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/channels.store.ts", - "source_location": "L144", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_channels_store_getroleidbyname", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "getroleidbyname()" - }, - { - "label": "incrementMention()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/channels.store.ts", - "source_location": "L361", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_channels_store_incrementmention", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "incrementmention()" - }, - { - "label": "incrementUnread()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/channels.store.ts", - "source_location": "L337", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_channels_store_incrementunread", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "incrementunread()" - }, - { - "label": "removeChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/channels.store.ts", - "source_location": "L232", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_channels_store_removechannel", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "removechannel()" - }, - { - "label": "resetChannelsStore()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/channels.store.ts", - "source_location": "L138", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_channels_store_resetchannelsstore", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "resetchannelsstore()" - }, - { - "label": "setActiveChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/channels.store.ts", - "source_location": "L249", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_channels_store_setactivechannel", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "setactivechannel()" - }, - { - "label": "setChannels()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/channels.store.ts", - "source_location": "L85", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_channels_store_setchannels", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "setchannels()" - }, - { - "label": "updateChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/channels.store.ts", - "source_location": "L192", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_channels_store_updatechannel", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "updatechannel()" - }, - { - "label": "addDmChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/dm.store.ts", - "source_location": "L70", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_dm_store_adddmchannel", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "adddmchannel()" - }, - { - "label": "clearDmUnread()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/dm.store.ts", - "source_location": "L174", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_dm_store_cleardmunread", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "cleardmunread()" - }, - { - "label": "closeDmLocally()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/dm.store.ts", - "source_location": "L116", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_dm_store_closedmlocally", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "closedmlocally()" - }, - { - "label": "dmDisplayName()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/dm.store.ts", - "source_location": "L194", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_dm_store_dmdisplayname", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "dmdisplayname()" - }, - { - "label": "removeDmChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/dm.store.ts", - "source_location": "L94", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_dm_store_removedmchannel", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "removedmchannel()" - }, - { - "label": "setDmChannels()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/dm.store.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_dm_store_setdmchannels", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "setdmchannels()" - }, - { - "label": "updateDmLastMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/dm.store.ts", - "source_location": "L125", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_dm_store_updatedmlastmessage", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "updatedmlastmessage()" - }, - { - "label": "updateDmLastMessagePreview()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/dm.store.ts", - "source_location": "L153", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_dm_store_updatedmlastmessagepreview", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "updatedmlastmessagepreview()" - }, - { - "label": "updateDmParticipant()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/dm.store.ts", - "source_location": "L215", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_dm_store_updatedmparticipant", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "updatedmparticipant()" - }, - { - "label": "closeModal()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/ui.store.ts", - "source_location": "L79", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_ui_store_closemodal", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "closemodal()" - }, - { - "label": "isCategoryCollapsed()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/ui.store.ts", - "source_location": "L174", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_ui_store_iscategorycollapsed", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "iscategorycollapsed()" - }, - { - "label": "loadCollapsedCategories()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/ui.store.ts", - "source_location": "L129", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_ui_store_loadcollapsedcategories", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "loadcollapsedcategories()" - }, - { - "label": "openModal()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/ui.store.ts", - "source_location": "L71", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_ui_store_openmodal", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "openmodal()" - }, - { - "label": "saveCollapsedCategories()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/ui.store.ts", - "source_location": "L150", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_ui_store_savecollapsedcategories", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "savecollapsedcategories()" - }, - { - "label": "setActiveDmUser()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/ui.store.ts", - "source_location": "L189", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_ui_store_setactivedmuser", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "setactivedmuser()" - }, - { - "label": "setConnectionStatus()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/ui.store.ts", - "source_location": "L95", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_ui_store_setconnectionstatus", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "setconnectionstatus()" - }, - { - "label": "setPersistentError()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/ui.store.ts", - "source_location": "L111", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_ui_store_setpersistenterror", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "setpersistenterror()" - }, - { - "label": "setSidebarMode()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/ui.store.ts", - "source_location": "L180", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_ui_store_setsidebarmode", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "setsidebarmode()" - }, - { - "label": "setTheme()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/ui.store.ts", - "source_location": "L87", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_ui_store_settheme", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "settheme()" - }, - { - "label": "toggleCategory()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/ui.store.ts", - "source_location": "L160", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_ui_store_togglecategory", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "togglecategory()" - }, - { - "label": "toggleMemberList()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/ui.store.ts", - "source_location": "L47", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_ui_store_togglememberlist", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "togglememberlist()" - }, - { - "label": "toggleSidebar()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/ui.store.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_ui_store_togglesidebar", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "togglesidebar()" - }, - { - "label": "makeOpts()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-controller.test.ts", - "source_location": "L269", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_controller_test_makeopts", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "makeopts()" - }, - { - "label": "makeSlots()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-controller.test.ts", - "source_location": "L261", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_controller_test_makeslots", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "makeslots()" - }, - { - "label": "mountDm()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-controller.test.ts", - "source_location": "L1500", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_controller_test_mountdm", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "mountdm()" - }, - { - "label": "seedChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-controller.test.ts", - "source_location": "L1341", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_controller_test_seedchannel", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "seedchannel()" - }, - { - "label": "wsHandler()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-controller.test.ts", - "source_location": "L1334", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_controller_test_wshandler", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "wshandler()" - }, - { - "label": "makeChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-navigation.test.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_navigation_test_makechannel", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "makechannel()" - }, - { - "label": "makeDm()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-navigation.test.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_navigation_test_makedm", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "makedm()" - }, - { - "label": "button()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-sidebar-read-state.test.ts", - "source_location": "L148", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_sidebar_read_state_test_button", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "button()" - }, - { - "label": "openCtxMenu()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-sidebar-read-state.test.ts", - "source_location": "L70", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_sidebar_read_state_test_openctxmenu", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "openctxmenu()" - }, - { - "label": "addVoiceUser()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-sidebar.test.ts", - "source_location": "L98", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_sidebar_test_addvoiceuser", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "addvoiceuser()" - }, - { - "label": "badgeFor()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-sidebar.test.ts", - "source_location": "L1969", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_sidebar_test_badgefor", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "badgefor()" - }, - { - "label": "mountAs()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-sidebar.test.ts", - "source_location": "L2388", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_sidebar_test_mountas", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "mountas()" - }, - { - "label": "openChannelCtxMenu()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-sidebar.test.ts", - "source_location": "L1069", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_sidebar_test_openchannelctxmenu", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "openchannelctxmenu()" - }, - { - "label": "openVoiceMenuAs()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-sidebar.test.ts", - "source_location": "L1414", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_sidebar_test_openvoicemenuas", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "openvoicemenuas()" - }, - { - "label": "resetStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-sidebar.test.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_sidebar_test_resetstores", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "resetstores()" - }, - { - "label": "setAdminUser()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-sidebar.test.ts", - "source_location": "L173", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_sidebar_test_setadminuser", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "setadminuser()" - }, - { - "label": "setPeerVerif()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-sidebar.test.ts", - "source_location": "L112", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_sidebar_test_setpeerverif", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "setpeerverif()" - }, - { - "label": "voiceModCallbacks()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-sidebar.test.ts", - "source_location": "L163", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_sidebar_test_voicemodcallbacks", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "voicemodcallbacks()" - }, - { - "label": "resetStore()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channels.store.test.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channels_store_test_resetstore", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "resetstore()" - }, - { - "label": "createMockWs()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/dispatcher.test.ts", - "source_location": "L100", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_dispatcher_test_createmockws", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "createmockws()" - }, - { - "label": "dispatchSelfVoiceState()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/dispatcher.test.ts", - "source_location": "L2604", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_dispatcher_test_dispatchselfvoicestate", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "dispatchselfvoicestate()" - }, - { - "label": "seedChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/dispatcher.test.ts", - "source_location": "L633", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_dispatcher_test_seedchannel", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "seedchannel()" - }, - { - "label": "seedDmMirrorRow()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/dispatcher.test.ts", - "source_location": "L1311", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_dispatcher_test_seeddmmirrorrow", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "seeddmmirrorrow()" - }, - { - "label": "storedMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/dispatcher.test.ts", - "source_location": "L1462", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_dispatcher_test_storedmessage", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "storedmessage()" - }, - { - "label": "convo()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/dm-groups.test.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_dm_groups_test_convo", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "convo()" - }, - { - "label": "makeDm()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/dm-groups.test.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_dm_groups_test_makedm", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "makedm()" - }, - { - "label": "mount()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/dm-groups.test.ts", - "source_location": "L108", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_dm_groups_test_mount", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "mount()" - }, - { - "label": "user()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/dm-groups.test.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_dm_groups_test_user", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "user()" - }, - { - "label": "makeDm()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/dm-store.test.ts", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_dm_store_test_makedm", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "makedm()" - }, - { - "label": "makeMirrorChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/dm-store.test.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_dm_store_test_makemirrorchannel", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "makemirrorchannel()" - }, - { - "label": "allElements()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/markdown-parser.property.test.ts", - "source_location": "L99", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_markdown_parser_property_test_allelements", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "allelements()" - }, - { - "label": "assertDomIsSafe()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/markdown-parser.property.test.ts", - "source_location": "L103", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_markdown_parser_property_test_assertdomissafe", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "assertdomissafe()" - }, - { - "label": "seedStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/markdown-parser.property.test.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_markdown_parser_property_test_seedstores", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "seedstores()" - }, - { - "label": "seedStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/mentions-render.test.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_mentions_render_test_seedstores", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "seedstores()" - }, - { - "label": "resetStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-jump.test.ts", - "source_location": "L64", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_jump_test_resetstores", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "resetstores()" - }, - { - "label": "disconnect()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-new-divider.test.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_new_divider_test_disconnect", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "disconnect()" - }, - { - "label": "dividerIndex()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-new-divider.test.ts", - "source_location": "L125", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_new_divider_test_dividerindex", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "dividerindex()" - }, - { - "label": "makeMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-new-divider.test.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_new_divider_test_makemessage", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "makemessage()" - }, - { - "label": "mount()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-new-divider.test.ts", - "source_location": "L120", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_new_divider_test_mount", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "mount()" - }, - { - "label": "observe()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-new-divider.test.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_new_divider_test_observe", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "observe()" - }, - { - "label": "openChannelWithUnread()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-new-divider.test.ts", - "source_location": "L78", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_new_divider_test_openchannelwithunread", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "openchannelwithunread()" - }, - { - "label": "resetStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-new-divider.test.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_new_divider_test_resetstores", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "resetstores()" - }, - { - "label": "setDetached()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-new-divider.test.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_new_divider_test_setdetached", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "setdetached()" - }, - { - "label": "setMessages()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-new-divider.test.ts", - "source_location": "L59", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_new_divider_test_setmessages", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "setmessages()" - }, - { - "label": "unobserve()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-new-divider.test.ts", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_new_divider_test_unobserve", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "unobserve()" - }, - { - "label": "resetStore()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/quick-switcher.test.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_quick_switcher_test_resetstore", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "resetstore()" - }, - { - "label": "channel()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/read-state.test.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_read_state_test_channel", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "channel()" - }, - { - "label": "dm()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/read-state.test.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_read_state_test_dm", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "dm()" - }, - { - "label": "resetStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/screen-share-button.test.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_screen_share_button_test_resetstores", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "resetstores()" - }, - { - "label": "setVoiceConnected()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/screen-share-button.test.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_screen_share_button_test_setvoiceconnected", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "setvoiceconnected()" - }, - { - "label": "auditBtn()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-area.test.ts", - "source_location": "L2689", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_area_test_auditbtn", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "auditbtn()" - }, - { - "label": "cleanup()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-area.test.ts", - "source_location": "L321", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_area_test_cleanup", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "cleanup()" - }, - { - "label": "defaultOpts()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-area.test.ts", - "source_location": "L279", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_area_test_defaultopts", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "defaultopts()" - }, - { - "label": "getMemberListCallbacks()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-area.test.ts", - "source_location": "L2316", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_area_test_getmemberlistcallbacks", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "getmemberlistcallbacks()" - }, - { - "label": "getMockDestroy()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-area.test.ts", - "source_location": "L182", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_area_test_getmockdestroy", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "getmockdestroy()" - }, - { - "label": "getMockMount()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-area.test.ts", - "source_location": "L177", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_area_test_getmockmount", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "getmockmount()" - }, - { - "label": "makeDm()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-area.test.ts", - "source_location": "L263", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_area_test_makedm", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "makedm()" - }, - { - "label": "resetMocks()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-area.test.ts", - "source_location": "L238", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_area_test_resetmocks", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "resetmocks()" - }, - { - "label": "resetStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-area.test.ts", - "source_location": "L191", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_area_test_resetstores", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "resetstores()" - }, - { - "label": "makeDeps()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-dm-helpers.test.ts", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_dm_helpers_test_makedeps", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "makedeps()" - }, - { - "label": "makeDmChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-dm-helpers.test.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_dm_helpers_test_makedmchannel", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "makedmchannel()" - }, - { - "label": "resetStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-dm-helpers.test.ts", - "source_location": "L19", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_dm_helpers_test_resetstores", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "resetstores()" - }, - { - "label": "defaultOpts()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-dm-section.test.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_dm_section_test_defaultopts", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "defaultopts()" - }, - { - "label": "makeDm()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-dm-section.test.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_dm_section_test_makedm", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "makedm()" - }, - { - "label": "resetStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-dm-section.test.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_dm_section_test_resetstores", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "resetstores()" - }, - { - "label": "resetStore()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/ui.store.test.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_ui_store_test_resetstore", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "resetstore()" - }, - { - "label": "makeLimiters()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/voice-callbacks.test.ts", - "source_location": "L80", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_voice_callbacks_test_makelimiters", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "makelimiters()" - }, - { - "label": "makeVoiceState()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/voice-callbacks.test.ts", - "source_location": "L97", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_voice_callbacks_test_makevoicestate", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "makevoicestate()" - }, - { - "label": "makeWs()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/voice-callbacks.test.ts", - "source_location": "L76", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_voice_callbacks_test_makews", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "makews()" - }, - { - "label": "resetStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/voice-widget.test.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_voice_widget_test_resetstores", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "resetstores()" - }, - { - "label": "setVoiceChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/voice-widget.test.ts", - "source_location": "L75", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_voice_widget_test_setvoicechannel", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "setvoicechannel()" - }, - { - "label": "setVoiceStatus()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/voice-widget.test.ts", - "source_location": "L70", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_voice_widget_test_setvoicestatus", - "community": 32, - "community_name": "channels.store.ts", - "norm_label": "setvoicestatus()" - }, - { - "label": "loadAdminPanel()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/admin-static-channel-perms.test.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_admin_static_channel_perms_test_loadadminpanel", - "community": 334, - "community_name": "admin-static-channel-perms.test.ts", - "norm_label": "loadadminpanel()" - }, - { - "label": "itemTexts()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/volume-menu.test.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_volume_menu_test_itemtexts", - "community": 340, - "community_name": "volume-menu.test.ts", - "norm_label": "itemtexts()" - }, - { - "label": "menuEl()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/volume-menu.test.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_volume_menu_test_menuel", - "community": 340, - "community_name": "volume-menu.test.ts", - "norm_label": "menuel()" - }, - { - "label": "sliderEl()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/volume-menu.test.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_volume_menu_test_sliderel", - "community": 340, - "community_name": "volume-menu.test.ts", - "norm_label": "sliderel()" - }, - { - "label": "renderMentions()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/content-parser.ts", - "source_location": "L159", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_content_parser_rendermentions", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "rendermentions()" - }, - { - "label": "formatFullDate()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/formatting.ts", - "source_location": "L68", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_formatting_formatfulldate", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "formatfulldate()" - }, - { - "label": "formatMessageTimestamp()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/formatting.ts", - "source_location": "L74", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_formatting_formatmessagetimestamp", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "formatmessagetimestamp()" - }, - { - "label": "formatTime()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/formatting.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_formatting_formattime", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "formattime()" - }, - { - "label": "getUserRole()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/formatting.ts", - "source_location": "L125", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_formatting_getuserrole", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "getuserrole()" - }, - { - "label": "isSameDay()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/formatting.ts", - "source_location": "L98", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_formatting_issameday", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "issameday()" - }, - { - "label": "parseTimestamp()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/formatting.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_formatting_parsetimestamp", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "parsetimestamp()" - }, - { - "label": "resolveAuthor()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/formatting.ts", - "source_location": "L139", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_formatting_resolveauthor", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "resolveauthor()" - }, - { - "label": "roleColorVar()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/formatting.ts", - "source_location": "L160", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_formatting_rolecolorvar", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "rolecolorvar()" - }, - { - "label": "shouldGroup()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/formatting.ts", - "source_location": "L108", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_formatting_shouldgroup", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "shouldgroup()" - }, - { - "label": "renderDayDivider()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/renderers.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_renderers_renderdaydivider", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "renderdaydivider()" - }, - { - "label": "renderMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/renderers.ts", - "source_location": "L175", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_renderers_rendermessage", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "rendermessage()" - }, - { - "label": "renderNewDivider()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/renderers.ts", - "source_location": "L77", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_renderers_rendernewdivider", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "rendernewdivider()" - }, - { - "label": "renderReplyRef()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/renderers.ts", - "source_location": "L98", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_renderers_renderreplyref", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "renderreplyref()" - }, - { - "label": "renderSystemMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/renderers.ts", - "source_location": "L144", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_renderers_rendersystemmessage", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "rendersystemmessage()" - }, - { - "label": "sendErrorReason()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/renderers.ts", - "source_location": "L156", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_renderers_senderrorreason", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "senderrorreason()" - }, - { - "label": "buildVirtualItems()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MessageList.ts", - "source_location": "L140", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_messagelist_buildvirtualitems", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "buildvirtualitems()" - }, - { - "label": "createMessageList()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MessageList.ts", - "source_location": "L243", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_messagelist_createmessagelist", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "createmessagelist()" - }, - { - "label": "estimateItemHeight()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MessageList.ts", - "source_location": "L103", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_messagelist_estimateitemheight", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "estimateitemheight()" - }, - { - "label": "firstUnreadIndex()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MessageList.ts", - "source_location": "L181", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_messagelist_firstunreadindex", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "firstunreadindex()" - }, - { - "label": "renderEmptyState()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MessageList.ts", - "source_location": "L188", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_messagelist_renderemptystate", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "renderemptystate()" - }, - { - "label": "renderLoadErrorState()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MessageList.ts", - "source_location": "L221", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_messagelist_renderloaderrorstate", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "renderloaderrorstate()" - }, - { - "label": "renderLoadingState()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MessageList.ts", - "source_location": "L211", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_messagelist_renderloadingstate", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "renderloadingstate()" - }, - { - "label": "createUserProfilePopup()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/UserProfilePopup.ts", - "source_location": "L88", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_userprofilepopup_createuserprofilepopup", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "createuserprofilepopup()" - }, - { - "label": "createAvatarElement()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/avatar.ts", - "source_location": "L87", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_avatar_createavatarelement", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "createavatarelement()" - }, - { - "label": "resolveDisplayName()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/avatar.ts", - "source_location": "L51", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_avatar_resolvedisplayname", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "resolvedisplayname()" - }, - { - "label": "formatMessageLink()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/deep-link.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_deep_link_formatmessagelink", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "formatmessagelink()" - }, - { - "label": "unobserveMedia()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/media-visibility.ts", - "source_location": "L255", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_media_visibility_unobservemedia", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "unobservemedia()" - }, - { - "label": "getUnreadOnOpen()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/channels.store.ts", - "source_location": "L80", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_channels_store_getunreadonopen", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "getunreadonopen()" - }, - { - "label": "getHistoryLoadState()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L959", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_gethistoryloadstate", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "gethistoryloadstate()" - }, - { - "label": "baseOptions()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-jump.test.ts", - "source_location": "L584", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_jump_test_baseoptions", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "baseoptions()" - }, - { - "label": "disconnect()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-jump.test.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_jump_test_disconnect", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "disconnect()" - }, - { - "label": "fakeApi()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-jump.test.ts", - "source_location": "L136", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_jump_test_fakeapi", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "fakeapi()" - }, - { - "label": "fakeCtrl()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-jump.test.ts", - "source_location": "L122", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_jump_test_fakectrl", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "fakectrl()" - }, - { - "label": "flushStore()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-jump.test.ts", - "source_location": "L144", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_jump_test_flushstore", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "flushstore()" - }, - { - "label": "immediateFrame()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-jump.test.ts", - "source_location": "L141", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_jump_test_immediateframe", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "immediateframe()" - }, - { - "label": "makeMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-jump.test.ts", - "source_location": "L86", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_jump_test_makemessage", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "makemessage()" - }, - { - "label": "observe()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-jump.test.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_jump_test_observe", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "observe()" - }, - { - "label": "renderRow()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-jump.test.ts", - "source_location": "L402", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_jump_test_renderrow", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "renderrow()" - }, - { - "label": "response()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-jump.test.ts", - "source_location": "L105", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_jump_test_response", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "response()" - }, - { - "label": "unobserve()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-jump.test.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_jump_test_unobserve", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "unobserve()" - }, - { - "label": "disconnect()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-media-release.test.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_media_release_test_disconnect", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "disconnect()" - }, - { - "label": "makeMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-media-release.test.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_media_release_test_makemessage", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "makemessage()" - }, - { - "label": "observe()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-media-release.test.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_media_release_test_observe", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "observe()" - }, - { - "label": "resetStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-media-release.test.ts", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_media_release_test_resetstores", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "resetstores()" - }, - { - "label": "setMessages()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-media-release.test.ts", - "source_location": "L71", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_media_release_test_setmessages", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "setmessages()" - }, - { - "label": "unobserve()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-media-release.test.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_media_release_test_unobserve", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "unobserve()" - }, - { - "label": "disconnect()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-optimistic-height-key.test.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_optimistic_height_key_test_disconnect", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "disconnect()" - }, - { - "label": "get()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-optimistic-height-key.test.ts", - "source_location": "L105", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_optimistic_height_key_test_get", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "get()" - }, - { - "label": "makeMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-optimistic-height-key.test.ts", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_optimistic_height_key_test_makemessage", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "makemessage()" - }, - { - "label": "observe()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-optimistic-height-key.test.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_optimistic_height_key_test_observe", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "observe()" - }, - { - "label": "resetStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-optimistic-height-key.test.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_optimistic_height_key_test_resetstores", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "resetstores()" - }, - { - "label": "setMessages()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-optimistic-height-key.test.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_optimistic_height_key_test_setmessages", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "setmessages()" - }, - { - "label": "unobserve()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list-optimistic-height-key.test.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_optimistic_height_key_test_unobserve", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "unobserve()" - }, - { - "label": "disconnect()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list.test.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_test_disconnect", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "disconnect()" - }, - { - "label": "makeMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list.test.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_test_makemessage", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "makemessage()" - }, - { - "label": "observe()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list.test.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_test_observe", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "observe()" - }, - { - "label": "resetStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list.test.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_test_resetstores", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "resetstores()" - }, - { - "label": "setHasMore()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list.test.ts", - "source_location": "L66", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_test_sethasmore", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "sethasmore()" - }, - { - "label": "setHistoryLoadState()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list.test.ts", - "source_location": "L74", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_test_sethistoryloadstate", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "sethistoryloadstate()" - }, - { - "label": "setMessages()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list.test.ts", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_test_setmessages", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "setmessages()" - }, - { - "label": "unobserve()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-list.test.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_list_test_unobserve", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "unobserve()" - }, - { - "label": "assertEasternTime()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/renderers.test.ts", - "source_location": "L1265", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_renderers_test_asserteasterntime", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "asserteasterntime()" - }, - { - "label": "makeMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/renderers.test.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_renderers_test_makemessage", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "makemessage()" - }, - { - "label": "makeOpts()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/renderers.test.ts", - "source_location": "L75", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_renderers_test_makeopts", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "makeopts()" - }, - { - "label": "resetStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/renderers.test.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_renderers_test_resetstores", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "resetstores()" - }, - { - "label": "seedMentionMembers()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/renderers.test.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_renderers_test_seedmentionmembers", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "seedmentionmembers()" - }, - { - "label": "get()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/user-profile-popup.test.ts", - "source_location": "L253", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_user_profile_popup_test_get", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "get()" - }, - { - "label": "getPopupEl()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/user-profile-popup.test.ts", - "source_location": "L200", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_user_profile_popup_test_getpopupel", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "getpopupel()" - }, - { - "label": "makeUser()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/user-profile-popup.test.ts", - "source_location": "L4", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_user_profile_popup_test_makeuser", - "community": 36, - "community_name": "MessageList.ts", - "norm_label": "makeuser()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "Client/tauri-client/public/vad-worklet.js", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_public_vad_worklet_vadprocessor_constructor", - "community": 363, - "community_name": "VadProcessor", - "norm_label": ".constructor()" - }, - { - "label": ".process()", - "file_type": "code", - "source_file": "Client/tauri-client/public/vad-worklet.js", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_public_vad_worklet_vadprocessor_process", - "community": 363, - "community_name": "VadProcessor", - "norm_label": ".process()" - }, - { - "label": "attachChannelContextMenu()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/channel-sidebar/context-menu.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channel_sidebar_context_menu_attachchannelcontextmenu", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "attachchannelcontextmenu()" - }, - { - "label": "attachDragHandlers()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/channel-sidebar/drag-reorder.ts", - "source_location": "L230", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channel_sidebar_drag_reorder_attachdraghandlers", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "attachdraghandlers()" - }, - { - "label": "ensureGlobalDragListeners()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/channel-sidebar/drag-reorder.ts", - "source_location": "L89", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channel_sidebar_drag_reorder_ensureglobaldraglisteners", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "ensureglobaldraglisteners()" - }, - { - "label": "releaseOwner()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/channel-sidebar/drag-reorder.ts", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channel_sidebar_drag_reorder_releaseowner", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "releaseowner()" - }, - { - "label": "retargetDetachedDrag()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/channel-sidebar/drag-reorder.ts", - "source_location": "L64", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channel_sidebar_drag_reorder_retargetdetacheddrag", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "retargetdetacheddrag()" - }, - { - "label": "buildVoiceModOptions()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ChannelSidebar.ts", - "source_location": "L312", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channelsidebar_buildvoicemodoptions", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "buildvoicemodoptions()" - }, - { - "label": "canModerateVoice()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ChannelSidebar.ts", - "source_location": "L174", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channelsidebar_canmoderatevoice", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "canmoderatevoice()" - }, - { - "label": "closeIdentityModal()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ChannelSidebar.ts", - "source_location": "L93", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channelsidebar_closeidentitymodal", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "closeidentitymodal()" - }, - { - "label": "nsfwIndicator()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ChannelSidebar.ts", - "source_location": "L215", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channelsidebar_nsfwindicator", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "nsfwindicator()" - }, - { - "label": "openIdentityMismatchModal()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ChannelSidebar.ts", - "source_location": "L100", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channelsidebar_openidentitymismatchmodal", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "openidentitymismatchmodal()" - }, - { - "label": "pickAvatarColor()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ChannelSidebar.ts", - "source_location": "L200", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channelsidebar_pickavatarcolor", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "pickavatarcolor()" - }, - { - "label": "renderChannelItem()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ChannelSidebar.ts", - "source_location": "L582", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channelsidebar_renderchannelitem", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "renderchannelitem()" - }, - { - "label": "renderTextChannelItem()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ChannelSidebar.ts", - "source_location": "L241", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channelsidebar_rendertextchannelitem", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "rendertextchannelitem()" - }, - { - "label": "renderVoiceChannelItem()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ChannelSidebar.ts", - "source_location": "L332", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channelsidebar_rendervoicechannelitem", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "rendervoicechannelitem()" - }, - { - "label": "verifyPresentation()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ChannelSidebar.ts", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channelsidebar_verifypresentation", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "verifypresentation()" - }, - { - "label": "voiceCapacityLabel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ChannelSidebar.ts", - "source_location": "L236", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_channelsidebar_voicecapacitylabel", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "voicecapacitylabel()" - }, - { - "label": "invalidateMuteCache()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/channel-mutes.ts", - "source_location": "L114", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_channel_mutes_invalidatemutecache", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "invalidatemutecache()" - }, - { - "label": "isChannelMuted()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/channel-mutes.ts", - "source_location": "L128", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_channel_mutes_ischannelmuted", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "ischannelmuted()" - }, - { - "label": "keyExists()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/channel-mutes.ts", - "source_location": "L81", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_channel_mutes_keyexists", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "keyexists()" - }, - { - "label": "listMutedChannels()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/channel-mutes.ts", - "source_location": "L133", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_channel_mutes_listmutedchannels", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "listmutedchannels()" - }, - { - "label": "muteChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/channel-mutes.ts", - "source_location": "L138", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_channel_mutes_mutechannel", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "mutechannel()" - }, - { - "label": "mutedKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/channel-mutes.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_channel_mutes_mutedkey", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "mutedkey()" - }, - { - "label": "notificationAllowed()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/channel-mutes.ts", - "source_location": "L169", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_channel_mutes_notificationallowed", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "notificationallowed()" - }, - { - "label": "parseMutedIds()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/channel-mutes.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_channel_mutes_parsemutedids", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "parsemutedids()" - }, - { - "label": "readMuted()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/channel-mutes.ts", - "source_location": "L85", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_channel_mutes_readmuted", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "readmuted()" - }, - { - "label": "setChannelMutesHost()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/channel-mutes.ts", - "source_location": "L59", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_channel_mutes_setchannelmuteshost", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "setchannelmuteshost()" - }, - { - "label": "toggleChannelMute()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/channel-mutes.ts", - "source_location": "L152", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_channel_mutes_togglechannelmute", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "togglechannelmute()" - }, - { - "label": "unmuteChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/channel-mutes.ts", - "source_location": "L145", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_channel_mutes_unmutechannel", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "unmutechannel()" - }, - { - "label": "writeMuted()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/channel-mutes.ts", - "source_location": "L108", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_channel_mutes_writemuted", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "writemuted()" - }, - { - "label": "fireDesktopNotification()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/notifications.ts", - "source_location": "L122", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_notifications_firedesktopnotification", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "firedesktopnotification()" - }, - { - "label": "flashTaskbar()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/notifications.ts", - "source_location": "L156", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_notifications_flashtaskbar", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "flashtaskbar()" - }, - { - "label": "isWindowFocused()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/notifications.ts", - "source_location": "L19", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_notifications_iswindowfocused", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "iswindowfocused()" - }, - { - "label": "notifyIncomingMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/notifications.ts", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_notifications_notifyincomingmessage", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "notifyincomingmessage()" - }, - { - "label": "playNotificationSound()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/notifications.ts", - "source_location": "L207", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_notifications_playnotificationsound", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "playnotificationsound()" - }, - { - "label": "resolveNotificationChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/notifications.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_notifications_resolvenotificationchannel", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "resolvenotificationchannel()" - }, - { - "label": "startRingChime()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/notifications.ts", - "source_location": "L188", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_notifications_startringchime", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "startringchime()" - }, - { - "label": "canManageChannels()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/permissions.ts", - "source_location": "L135", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_permissions_canmanagechannels", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "canmanagechannels()" - }, - { - "label": "canManageMessages()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/permissions.ts", - "source_location": "L120", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_permissions_canmanagemessages", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "canmanagemessages()" - }, - { - "label": "canViewAuditLog()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/permissions.ts", - "source_location": "L145", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_permissions_canviewauditlog", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "canviewauditlog()" - }, - { - "label": "computeEffective()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/permissions.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_permissions_computeeffective", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "computeeffective()" - }, - { - "label": "currentUserHasPermission()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/permissions.ts", - "source_location": "L115", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_permissions_currentuserhaspermission", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "currentuserhaspermission()" - }, - { - "label": "currentUserPermissions()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/permissions.ts", - "source_location": "L105", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_permissions_currentuserpermissions", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "currentuserpermissions()" - }, - { - "label": "hasAllPermissions()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/permissions.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_permissions_hasallpermissions", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "hasallpermissions()" - }, - { - "label": "hasAnyPermission()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/permissions.ts", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_permissions_hasanypermission", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "hasanypermission()" - }, - { - "label": "hasPermission()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/permissions.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_permissions_haspermission", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "haspermission()" - }, - { - "label": "isAdministrator()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/permissions.ts", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_permissions_isadministrator", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "isadministrator()" - }, - { - "label": "isLegacyAdminRole()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/permissions.ts", - "source_location": "L78", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_permissions_islegacyadminrole", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "islegacyadminrole()" - }, - { - "label": "permissionsForRole()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/permissions.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_permissions_permissionsforrole", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "permissionsforrole()" - }, - { - "label": "roleHasPermission()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/permissions.ts", - "source_location": "L94", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_permissions_rolehaspermission", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "rolehaspermission()" - }, - { - "label": "hasUnread()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/read-state.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_read_state_hasunread", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "hasunread()" - }, - { - "label": "attachScrollCollapse()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/streamPreview.ts", - "source_location": "L350", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_streampreview_attachscrollcollapse", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "attachscrollcollapse()" - }, - { - "label": "attachStreamPreview()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/streamPreview.ts", - "source_location": "L282", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_streampreview_attachstreampreview", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "attachstreampreview()" - }, - { - "label": "clearPreviewState()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/streamPreview.ts", - "source_location": "L78", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_streampreview_clearpreviewstate", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "clearpreviewstate()" - }, - { - "label": "createPlaceholder()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/streamPreview.ts", - "source_location": "L206", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_streampreview_createplaceholder", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "createplaceholder()" - }, - { - "label": "createUnavailablePlaceholder()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/streamPreview.ts", - "source_location": "L226", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_streampreview_createunavailableplaceholder", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "createunavailableplaceholder()" - }, - { - "label": "hidePreview()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/streamPreview.ts", - "source_location": "L246", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_streampreview_hidepreview", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "hidepreview()" - }, - { - "label": "removePreviewDom()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/streamPreview.ts", - "source_location": "L87", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_streampreview_removepreviewdom", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "removepreviewdom()" - }, - { - "label": "showPreview()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/streamPreview.ts", - "source_location": "L97", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_streampreview_showpreview", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "showpreview()" - }, - { - "label": "trackRowForSignal()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/streamPreview.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_streampreview_trackrowforsignal", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "trackrowforsignal()" - }, - { - "label": "initWindowState()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/window-state.ts", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_window_state_initwindowstate", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "initwindowstate()" - }, - { - "label": "isRectOnScreen()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/window-state.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_window_state_isrectonscreen", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "isrectonscreen()" - }, - { - "label": "getCurrentUser()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/auth.store.ts", - "source_location": "L127", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_auth_store_getcurrentuser", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "getcurrentuser()" - }, - { - "label": "updateChannelPosition()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/channels.store.ts", - "source_location": "L218", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_channels_store_updatechannelposition", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "updatechannelposition()" - }, - { - "label": "getChannelVoiceUsers()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L548", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_getchannelvoiceusers", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "getchannelvoiceusers()" - }, - { - "label": "getPeerVerification()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L543", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_getpeerverification", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "getpeerverification()" - }, - { - "label": "channel()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-mute-ui.test.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_mute_ui_test_channel", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "channel()" - }, - { - "label": "openMenu()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-mute-ui.test.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_mute_ui_test_openmenu", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "openmenu()" - }, - { - "label": "loadNotifications()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-mutes.test.ts", - "source_location": "L172", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_mutes_test_loadnotifications", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "loadnotifications()" - }, - { - "label": "payload()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/channel-mutes.test.ts", - "source_location": "L183", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_channel_mutes_test_payload", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "payload()" - }, - { - "label": "buildRig()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/drag-reorder.test.ts", - "source_location": "L103", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_drag_reorder_test_buildrig", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "buildrig()" - }, - { - "label": "drag()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/drag-reorder.test.ts", - "source_location": "L160", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_drag_reorder_test_drag", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "drag()" - }, - { - "label": "makeCh()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/drag-reorder.test.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_drag_reorder_test_makech", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "makech()" - }, - { - "label": "makeUser()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/drag-reorder.test.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_drag_reorder_test_makeuser", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "makeuser()" - }, - { - "label": "mouse()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/drag-reorder.test.ts", - "source_location": "L155", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_drag_reorder_test_mouse", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "mouse()" - }, - { - "label": "positionsOf()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/drag-reorder.test.ts", - "source_location": "L717", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_drag_reorder_test_positionsof", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "positionsof()" - }, - { - "label": "rebuildContainer()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/drag-reorder.test.ts", - "source_location": "L126", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_drag_reorder_test_rebuildcontainer", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "rebuildcontainer()" - }, - { - "label": "setStoreChannels()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/drag-reorder.test.ts", - "source_location": "L545", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_drag_reorder_test_setstorechannels", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "setstorechannels()" - }, - { - "label": "signIn()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/drag-reorder.test.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_drag_reorder_test_signin", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "signin()" - }, - { - "label": "stubRowRect()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/drag-reorder.test.ts", - "source_location": "L74", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_drag_reorder_test_stubrowrect", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "stubrowrect()" - }, - { - "label": "yInRow()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/drag-reorder.test.ts", - "source_location": "L147", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_drag_reorder_test_yinrow", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "yinrow()" - }, - { - "label": "get()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/notifications.test.ts", - "source_location": "L589", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_notifications_test_get", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "get()" - }, - { - "label": "makePayload()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/notifications.test.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_notifications_test_makepayload", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "makepayload()" - }, - { - "label": "titleFor()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/notifications.test.ts", - "source_location": "L1413", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_notifications_test_titlefor", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "titlefor()" - }, - { - "label": "signInAs()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/permissions.test.ts", - "source_location": "L340", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_permissions_test_signinas", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "signinas()" - }, - { - "label": "createMockMediaStream()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/stream-preview.test.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_stream_preview_test_createmockmediastream", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "createmockmediastream()" - }, - { - "label": "createRow()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/stream-preview.test.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_stream_preview_test_createrow", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "createrow()" - }, - { - "label": "getPreview()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/stream-preview.test.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_stream_preview_test_getpreview", - "community": 37, - "community_name": "ChannelSidebar.ts", - "norm_label": "getpreview()" - }, - { - "label": "close()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/types/jsdom.d.ts", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_types_jsdom_d_close", - "community": 391, - "community_name": "jsdom.d.ts", - "norm_label": "close()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/types/jsdom.d.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_types_jsdom_d_jsdom_constructor", - "community": 391, - "community_name": "jsdom.d.ts", - "norm_label": ".constructor()" - }, - { - "label": "createNsfwGate()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/NsfwGate.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_nsfwgate_creatensfwgate", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "creatensfwgate()" - }, - { - "label": "findChannelById()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/channel-navigation.ts", - "source_location": "L60", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_channel_navigation_findchannelbyid", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "findchannelbyid()" - }, - { - "label": "acknowledgeNsfw()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/nsfw-gate.ts", - "source_location": "L59", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_nsfw_gate_acknowledgensfw", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "acknowledgensfw()" - }, - { - "label": "clearNsfwAcknowledgements()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/nsfw-gate.ts", - "source_location": "L69", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_nsfw_gate_clearnsfwacknowledgements", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "clearnsfwacknowledgements()" - }, - { - "label": "isNsfwAcknowledged()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/nsfw-gate.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_nsfw_gate_isnsfwacknowledged", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "isnsfwacknowledged()" - }, - { - "label": "nsfwGateRequired()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/nsfw-gate.ts", - "source_location": "L86", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_nsfw_gate_nsfwgaterequired", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "nsfwgaterequired()" - }, - { - "label": "setNsfwGateHost()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/nsfw-gate.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_nsfw_gate_setnsfwgatehost", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "setnsfwgatehost()" - }, - { - "label": "storageKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/nsfw-gate.ts", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_nsfw_gate_storagekey", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "storagekey()" - }, - { - "label": ".destroyChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ChannelController.ts", - "source_location": "L74", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_channelcontroller_channelcontroller_destroychannel", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": ".destroychannel()" - }, - { - "label": ".mountChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ChannelController.ts", - "source_location": "L72", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_channelcontroller_channelcontroller_mountchannel", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": ".mountchannel()" - }, - { - "label": ".openFilePicker()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ChannelController.ts", - "source_location": "L80", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_channelcontroller_channelcontroller_openfilepicker", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": ".openfilepicker()" - }, - { - "label": "createChannelController()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ChannelController.ts", - "source_location": "L87", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_channelcontroller_createchannelcontroller", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "createchannelcontroller()" - }, - { - "label": "tryConsume()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ChannelController.ts", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_channelcontroller_tryconsume", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "tryconsume()" - }, - { - "label": "createMessageController()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/MessageController.ts", - "source_location": "L72", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_messagecontroller_createmessagecontroller", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "createmessagecontroller()" - }, - { - "label": "createPendingDeleteManager()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/MessageController.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_messagecontroller_creatependingdeletemanager", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "creatependingdeletemanager()" - }, - { - "label": ".loadMessages()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/MessageController.ts", - "source_location": "L68", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_messagecontroller_messagecontroller_loadmessages", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": ".loadmessages()" - }, - { - "label": ".loadOlderMessages()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/MessageController.ts", - "source_location": "L69", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_messagecontroller_messagecontroller_loadoldermessages", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": ".loadoldermessages()" - }, - { - "label": ".cleanup()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/MessageController.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_messagecontroller_pendingdeletemanager_cleanup", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": ".cleanup()" - }, - { - "label": ".tryDelete()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/MessageController.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_messagecontroller_pendingdeletemanager_trydelete", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": ".trydelete()" - }, - { - "label": "createMessageJumper()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/MessageJump.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_messagejump_createmessagejumper", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "createmessagejumper()" - }, - { - "label": "defaultNextFrame()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/MessageJump.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_messagejump_defaultnextframe", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "defaultnextframe()" - }, - { - "label": ".jumpTo()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/MessageJump.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_messagejump_messagejumper_jumpto", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": ".jumpto()" - }, - { - "label": "createReactionController()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ReactionController.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_reactioncontroller_createreactioncontroller", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "createreactioncontroller()" - }, - { - "label": ".destroy()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ReactionController.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_reactioncontroller_reactioncontroller_destroy", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": ".destroy()" - }, - { - "label": ".handleReaction()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ReactionController.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_reactioncontroller_reactioncontroller_handlereaction", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": ".handlereaction()" - }, - { - "label": "tryConsume()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ReactionController.ts", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_reactioncontroller_tryconsume", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "tryconsume()" - }, - { - "label": "addMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L219", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_addmessage", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "addmessage()" - }, - { - "label": "addOptimisticMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L290", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_addoptimisticmessage", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "addoptimisticmessage()" - }, - { - "label": "addOptimisticReaction()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L859", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_addoptimisticreaction", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "addoptimisticreaction()" - }, - { - "label": "addPendingSend()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L744", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_addpendingsend", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "addpendingsend()" - }, - { - "label": "applyReactionDelta()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L817", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_applyreactiondelta", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "applyreactiondelta()" - }, - { - "label": "bulkDeleteMessages()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L708", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_bulkdeletemessages", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "bulkdeletemessages()" - }, - { - "label": "chatPayloadToMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L106", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_chatpayloadtomessage", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "chatpayloadtomessage()" - }, - { - "label": "clearChannelMessages()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L783", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_clearchannelmessages", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "clearchannelmessages()" - }, - { - "label": "confirmSend()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L759", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_confirmsend", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "confirmsend()" - }, - { - "label": "deleteMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L688", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_deletemessage", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "deletemessage()" - }, - { - "label": "editMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L664", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_editmessage", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "editmessage()" - }, - { - "label": "getChannelMessages()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L944", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_getchannelmessages", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "getchannelmessages()" - }, - { - "label": "hasMessageLoaded()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L972", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_hasmessageloaded", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "hasmessageloaded()" - }, - { - "label": "hasMoreMessages()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L954", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_hasmoremessages", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "hasmoremessages()" - }, - { - "label": "invalidateChannelMessageWindow()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L586", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_invalidatechannelmessagewindow", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "invalidatechannelmessagewindow()" - }, - { - "label": "invalidateLoadedMessageWindows()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L550", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_invalidateloadedmessagewindows", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "invalidateloadedmessagewindows()" - }, - { - "label": "isChannelLoaded()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L949", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_ischannelloaded", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "ischannelloaded()" - }, - { - "label": "isUnreconciledEcho()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L194", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_isunreconciledecho", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "isunreconciledecho()" - }, - { - "label": "isWindowDetached()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L967", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_iswindowdetached", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "iswindowdetached()" - }, - { - "label": "markSendFailed()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L326", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_marksendfailed", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "marksendfailed()" - }, - { - "label": "messageResponseToMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L127", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_messageresponsetomessage", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "messageresponsetomessage()" - }, - { - "label": "prependMessages()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L618", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_prependmessages", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "prependmessages()" - }, - { - "label": "reattachToPresent()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L607", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_reattachtopresent", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "reattachtopresent()" - }, - { - "label": "removeOptimistic()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L344", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_removeoptimistic", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "removeoptimistic()" - }, - { - "label": "rollbackReaction()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L875", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_rollbackreaction", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "rollbackreaction()" - }, - { - "label": "setAroundMessages()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L487", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_setaroundmessages", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "setaroundmessages()" - }, - { - "label": "setChannelLoadError()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L389", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_setchannelloaderror", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "setchannelloaderror()" - }, - { - "label": "setChannelLoading()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L380", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_setchannelloading", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "setchannelloading()" - }, - { - "label": "setMessagePinned()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L728", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_setmessagepinned", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "setmessagepinned()" - }, - { - "label": "setMessages()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L406", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_setmessages", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "setmessages()" - }, - { - "label": "updateReaction()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/messages.store.ts", - "source_location": "L897", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_messages_store_updatereaction", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "updatereaction()" - }, - { - "label": "flushMicrotasks()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/auth.store.test.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_auth_store_test_flushmicrotasks", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "flushmicrotasks()" - }, - { - "label": "makeMessageResponse()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/auth.store.test.ts", - "source_location": "L425", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_auth_store_test_makemessageresponse", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "makemessageresponse()" - }, - { - "label": "resetStore()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/auth.store.test.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_auth_store_test_resetstore", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "resetstore()" - }, - { - "label": "makeAbort()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-controller.test.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_controller_test_makeabort", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "makeabort()" - }, - { - "label": "makeApi()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-controller.test.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_controller_test_makeapi", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "makeapi()" - }, - { - "label": "ascendingWindow()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/messages-store-detached.test.ts", - "source_location": "L51", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_messages_store_detached_test_ascendingwindow", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "ascendingwindow()" - }, - { - "label": "broadcast()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/messages-store-detached.test.ts", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_messages_store_detached_test_broadcast", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "broadcast()" - }, - { - "label": "ids()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/messages-store-detached.test.ts", - "source_location": "L69", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_messages_store_detached_test_ids", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "ids()" - }, - { - "label": "response()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/messages-store-detached.test.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_messages_store_detached_test_response", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "response()" - }, - { - "label": "makeChatPayload()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/messages.store.test.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_messages_store_test_makechatpayload", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "makechatpayload()" - }, - { - "label": "makeMessageResponse()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/messages.store.test.ts", - "source_location": "L78", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_messages_store_test_makemessageresponse", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "makemessageresponse()" - }, - { - "label": "resetStore()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/messages.store.test.ts", - "source_location": "L99", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_messages_store_test_resetstore", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "resetstore()" - }, - { - "label": "mountGate()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/nsfw-gate.test.ts", - "source_location": "L129", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_nsfw_gate_test_mountgate", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "mountgate()" - }, - { - "label": "makeLimiter()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/reaction-controller.test.ts", - "source_location": "L88", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_reaction_controller_test_makelimiter", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "makelimiter()" - }, - { - "label": "makeOpts()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/reaction-controller.test.ts", - "source_location": "L92", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_reaction_controller_test_makeopts", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "makeopts()" - }, - { - "label": "makeWs()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/reaction-controller.test.ts", - "source_location": "L84", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_reaction_controller_test_makews", - "community": 4, - "community_name": "messages.store.ts", - "norm_label": "makews()" - }, - { - "label": "navigate()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/admin/admin-panel.spec.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_admin_admin_panel_spec_navigate", - "community": 405, - "community_name": "admin-panel.spec.ts", - "norm_label": "navigate()" - }, - { - "label": "createMemoryStorage()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/setup.ts", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_setup_creatememorystorage", - "community": 430, - "community_name": "setup.ts", - "norm_label": "creatememorystorage()" - }, - { - "label": "highContrastRuleBody()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/appearance-high-contrast.test.ts", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_appearance_high_contrast_test_highcontrastrulebody", - "community": 431, - "community_name": "appearance-high-contrast.test.ts", - "norm_label": "highcontrastrulebody()" - }, - { - "label": "bodyRuleBody()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/base-font-size-css.test.ts", - "source_location": "L19", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_base_font_size_css_test_bodyrulebody", - "community": 432, - "community_name": "base-font-size-css.test.ts", - "norm_label": "bodyrulebody()" - }, - { - "label": "stripCrossOrigin()", - "file_type": "code", - "source_file": "Client/tauri-client/vite.config.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_vite_config_stripcrossorigin", - "community": 433, - "community_name": "vite.config.ts", - "norm_label": "stripcrossorigin()" - }, - { - "label": "colorForStatus()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/StatusPicker.ts", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_statuspicker_colorforstatus", - "community": 44, - "community_name": "authStore", - "norm_label": "colorforstatus()" - }, - { - "label": "createStatusPicker()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/StatusPicker.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_statuspicker_createstatuspicker", - "community": 44, - "community_name": "authStore", - "norm_label": "createstatuspicker()" - }, - { - "label": "createUserBar()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/UserBar.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_userbar_createuserbar", - "community": 44, - "community_name": "authStore", - "norm_label": "createuserbar()" - }, - { - "label": "adminPanelUrl()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/admin-panel.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_admin_panel_adminpanelurl", - "community": 44, - "community_name": "authStore", - "norm_label": "adminpanelurl()" - }, - { - "label": "openAdminPanel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/admin-panel.ts", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_admin_panel_openadminpanel", - "community": 44, - "community_name": "authStore", - "norm_label": "openadminpanel()" - }, - { - "label": ".destroy()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/autoIdle.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_autoidle_autoidlecontroller_destroy", - "community": 44, - "community_name": "authStore", - "norm_label": ".destroy()" - }, - { - "label": ".notifyActivity()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/autoIdle.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_autoidle_autoidlecontroller_notifyactivity", - "community": 44, - "community_name": "authStore", - "norm_label": ".notifyactivity()" - }, - { - "label": "nextAutoStatus()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/autoIdle.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_autoidle_nextautostatus", - "community": 44, - "community_name": "authStore", - "norm_label": "nextautostatus()" - }, - { - "label": "startAutoIdle()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/autoIdle.ts", - "source_location": "L79", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_autoidle_startautoidle", - "community": 44, - "community_name": "authStore", - "norm_label": "startautoidle()" - }, - { - "label": "createPresenceSender()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/presence.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_presence_createpresencesender", - "community": 44, - "community_name": "authStore", - "norm_label": "createpresencesender()" - }, - { - "label": ".destroy()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/presence.ts", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_presence_presencesender_destroy", - "community": 44, - "community_name": "authStore", - "norm_label": ".destroy()" - }, - { - "label": ".send()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/presence.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_presence_presencesender_send", - "community": 44, - "community_name": "authStore", - "norm_label": ".send()" - }, - { - "label": "isUserStatus()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/userStatus.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_userstatus_isuserstatus", - "community": 44, - "community_name": "authStore", - "norm_label": "isuserstatus()" - }, - { - "label": "loadCustomStatus()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/userStatus.ts", - "source_location": "L98", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_userstatus_loadcustomstatus", - "community": 44, - "community_name": "authStore", - "norm_label": "loadcustomstatus()" - }, - { - "label": "loadUserStatus()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/userStatus.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_userstatus_loaduserstatus", - "community": 44, - "community_name": "authStore", - "norm_label": "loaduserstatus()" - }, - { - "label": "loadUserStatusOrigin()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/userStatus.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_userstatus_loaduserstatusorigin", - "community": 44, - "community_name": "authStore", - "norm_label": "loaduserstatusorigin()" - }, - { - "label": "onUserStatusChange()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/userStatus.ts", - "source_location": "L72", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_userstatus_onuserstatuschange", - "community": 44, - "community_name": "authStore", - "norm_label": "onuserstatuschange()" - }, - { - "label": "saveCustomStatus()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/userStatus.ts", - "source_location": "L105", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_userstatus_savecustomstatus", - "community": 44, - "community_name": "authStore", - "norm_label": "savecustomstatus()" - }, - { - "label": "saveUserStatus()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/userStatus.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_userstatus_saveuserstatus", - "community": 44, - "community_name": "authStore", - "norm_label": "saveuserstatus()" - }, - { - "label": "bracketBareIPv6Host()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ws.ts", - "source_location": "L146", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ws_bracketbareipv6host", - "community": 44, - "community_name": "authStore", - "norm_label": "bracketbareipv6host()" - }, - { - "label": "createWsClient()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ws.ts", - "source_location": "L157", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ws_createwsclient", - "community": 44, - "community_name": "authStore", - "norm_label": "createwsclient()" - }, - { - "label": "ensureTauriApis()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ws.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ws_ensuretauriapis", - "community": 44, - "community_name": "authStore", - "norm_label": "ensuretauriapis()" - }, - { - "label": "normalizeHostForCertCompare()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ws.ts", - "source_location": "L129", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ws_normalizehostforcertcompare", - "community": 44, - "community_name": "authStore", - "norm_label": "normalizehostforcertcompare()" - }, - { - "label": "parseStoredFingerprint()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ws.ts", - "source_location": "L75", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ws_parsestoredfingerprint", - "community": 44, - "community_name": "authStore", - "norm_label": "parsestoredfingerprint()" - }, - { - "label": "uuid()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/ws.ts", - "source_location": "L116", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_ws_uuid", - "community": 44, - "community_name": "authStore", - "norm_label": "uuid()" - }, - { - "label": "openSettings()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/ui.store.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_ui_store_opensettings", - "community": 44, - "community_name": "authStore", - "norm_label": "opensettings()" - }, - { - "label": "createMockWsClient()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/mock-ws.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_mock_ws_createmockwsclient", - "community": 44, - "community_name": "authStore", - "norm_label": "createmockwsclient()" - }, - { - "label": ".simulate()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/integration/stores.test.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_integration_stores_test_mockwsclient_simulate", - "community": 44, - "community_name": "authStore", - "norm_label": ".simulate()" - }, - { - "label": "createTarget()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/auto-idle.test.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_auto_idle_test_createtarget", - "community": 44, - "community_name": "authStore", - "norm_label": "createtarget()" - }, - { - "label": "mountModal()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/cert-mismatch-modal.test.ts", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_cert_mismatch_modal_test_mountmodal", - "community": 44, - "community_name": "authStore", - "norm_label": "mountmodal()" - }, - { - "label": "emitTauriEvent()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/helpers/ws-mocks.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_helpers_ws_mocks_emittaurievent", - "community": 44, - "community_name": "authStore", - "norm_label": "emittaurievent()" - }, - { - "label": "dmChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/main-page.test.ts", - "source_location": "L332", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_main_page_test_dmchannel", - "community": 44, - "community_name": "authStore", - "norm_label": "dmchannel()" - }, - { - "label": "fakeApi()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/main-page.test.ts", - "source_location": "L236", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_main_page_test_fakeapi", - "community": 44, - "community_name": "authStore", - "norm_label": "fakeapi()" - }, - { - "label": "fakeWs()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/main-page.test.ts", - "source_location": "L206", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_main_page_test_fakews", - "community": 44, - "community_name": "authStore", - "norm_label": "fakews()" - }, - { - "label": "resetStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/main-page.test.ts", - "source_location": "L176", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_main_page_test_resetstores", - "community": 44, - "community_name": "authStore", - "norm_label": "resetstores()" - }, - { - "label": "textChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/main-page.test.ts", - "source_location": "L243", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_main_page_test_textchannel", - "community": 44, - "community_name": "authStore", - "norm_label": "textchannel()" - }, - { - "label": "loginAndReachAuthOk()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/main.test.ts", - "source_location": "L184", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_main_test_loginandreachauthok", - "community": 44, - "community_name": "authStore", - "norm_label": "loginandreachauthok()" - }, - { - "label": "createMockWs()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/presence-sender.test.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_presence_sender_test_createmockws", - "community": 44, - "community_name": "authStore", - "norm_label": "createmockws()" - }, - { - "label": "clickOption()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/status-picker-custom.test.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_status_picker_custom_test_clickoption", - "community": 44, - "community_name": "authStore", - "norm_label": "clickoption()" - }, - { - "label": "labels()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/status-picker-custom.test.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_status_picker_custom_test_labels", - "community": 44, - "community_name": "authStore", - "norm_label": "labels()" - }, - { - "label": "createMockWs()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/status-picker-userbar.test.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_status_picker_userbar_test_createmockws", - "community": 44, - "community_name": "authStore", - "norm_label": "createmockws()" - }, - { - "label": "setAuthState()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/status-picker-userbar.test.ts", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_status_picker_userbar_test_setauthstate", - "community": 44, - "community_name": "authStore", - "norm_label": "setauthstate()" - }, - { - "label": "userBarOptsWithPresence()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/status-picker-userbar.test.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_status_picker_userbar_test_userbaroptswithpresence", - "community": 44, - "community_name": "authStore", - "norm_label": "userbaroptswithpresence()" - }, - { - "label": "setAuthState()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/user-bar.test.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_user_bar_test_setauthstate", - "community": 44, - "community_name": "authStore", - "norm_label": "setauthstate()" - }, - { - "label": "getAuthPayload()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/ws-active-channel.test.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_ws_active_channel_test_getauthpayload", - "community": 44, - "community_name": "authStore", - "norm_label": "getauthpayload()" - }, - { - "label": "setupPipelineForVad()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/audio-pipeline-vad-worklet.test.ts", - "source_location": "L273", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_audio_pipeline_vad_worklet_test_setuppipelineforvad", - "community": 456, - "community_name": "audio-pipeline-vad-worklet.test.ts", - "norm_label": "setuppipelineforvad()" - }, - { - "label": "setupPipelineWithWorklet()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/audio-pipeline-vad-worklet.test.ts", - "source_location": "L88", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_audio_pipeline_vad_worklet_test_setuppipelinewithworklet", - "community": 456, - "community_name": "audio-pipeline-vad-worklet.test.ts", - "norm_label": "setuppipelinewithworklet()" - }, - { - "label": ".addEventListener()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/search-overlay.test.ts", - "source_location": "L327", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_search_overlay_test_element_addeventlistener", - "community": 457, - "community_name": ".addEventListener", - "norm_label": ".addeventlistener()" - }, - { - "label": "cleanupUserDataDir()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native-fixture.ts", - "source_location": "L86", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_fixture_cleanupuserdatadir", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "cleanupuserdatadir()" - }, - { - "label": "createUserDataDir()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native-fixture.ts", - "source_location": "L77", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_fixture_createuserdatadir", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "createuserdatadir()" - }, - { - "label": "acquirePersistentPage()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native-fixture-persistent.ts", - "source_location": "L113", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_fixture_persistent_acquirepersistentpage", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "acquirepersistentpage()" - }, - { - "label": "cleanupUserDataDir()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native-fixture-persistent.ts", - "source_location": "L86", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_fixture_persistent_cleanupuserdatadir", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "cleanupuserdatadir()" - }, - { - "label": "createUserDataDir()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native-fixture-persistent.ts", - "source_location": "L77", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_fixture_persistent_createuserdatadir", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "createuserdatadir()" - }, - { - "label": "releasePersistentPage()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native-fixture-persistent.ts", - "source_location": "L172", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_fixture_persistent_releasepersistentpage", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "releasepersistentpage()" - }, - { - "label": "waitForCdpEndpoint()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native-fixture-persistent.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_fixture_persistent_waitforcdpendpoint", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "waitforcdpendpoint()" - }, - { - "label": "waitForCdpEndpoint()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native-fixture.ts", - "source_location": "L51", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_fixture_waitforcdpendpoint", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "waitforcdpendpoint()" - }, - { - "label": "countTextChannels()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native/helpers.ts", - "source_location": "L186", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_helpers_counttextchannels", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "counttextchannels()" - }, - { - "label": "countVisible()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native/helpers.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_helpers_countvisible", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "countvisible()" - }, - { - "label": "countVoiceChannels()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native/helpers.ts", - "source_location": "L196", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_helpers_countvoicechannels", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "countvoicechannels()" - }, - { - "label": "ensureLoggedIn()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native/helpers.ts", - "source_location": "L135", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_helpers_ensureloggedin", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "ensureloggedin()" - }, - { - "label": "hasCredentials()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native/helpers.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_helpers_hascredentials", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "hascredentials()" - }, - { - "label": "isLoggedIn()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native/helpers.ts", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_helpers_isloggedin", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "isloggedin()" - }, - { - "label": "logEnvironmentState()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native/helpers.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_helpers_logenvironmentstate", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "logenvironmentstate()" - }, - { - "label": "nativeLogin()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native/helpers.ts", - "source_location": "L74", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_helpers_nativelogin", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "nativelogin()" - }, - { - "label": "nativeLoginAndReady()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native/helpers.ts", - "source_location": "L122", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_helpers_nativeloginandready", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "nativeloginandready()" - }, - { - "label": "openSettings()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native/helpers.ts", - "source_location": "L168", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_helpers_opensettings", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "opensettings()" - }, - { - "label": "selectChannel()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native/helpers.ts", - "source_location": "L159", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_helpers_selectchannel", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "selectchannel()" - }, - { - "label": "waitForMessages()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native/helpers.ts", - "source_location": "L177", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_helpers_waitformessages", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "waitformessages()" - }, - { - "label": "switchTab()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/native/theme-persistence.spec.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_native_theme_persistence_spec_switchtab", - "community": 49, - "community_name": "native/helpers.ts", - "norm_label": "switchtab()" - }, - { - "label": ".close()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/notifications.test.ts", - "source_location": "L93", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_notifications_test_mockaudiocontext_close", - "community": 536, - "community_name": "MockAudioContext", - "norm_label": ".close()" - }, - { - "label": ".createGain()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/notifications.test.ts", - "source_location": "L90", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_notifications_test_mockaudiocontext_creategain", - "community": 536, - "community_name": "MockAudioContext", - "norm_label": ".creategain()" - }, - { - "label": ".createOscillator()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/notifications.test.ts", - "source_location": "L87", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_notifications_test_mockaudiocontext_createoscillator", - "community": 536, - "community_name": "MockAudioContext", - "norm_label": ".createoscillator()" - }, - { - "label": "attachReactionTooltip()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/reaction-tooltip.ts", - "source_location": "L269", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_reaction_tooltip_attachreactiontooltip", - "community": 54, - "community_name": "reaction-tooltip.ts", - "norm_label": "attachreactiontooltip()" - }, - { - "label": "cacheKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/reaction-tooltip.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_reaction_tooltip_cachekey", - "community": 54, - "community_name": "reaction-tooltip.ts", - "norm_label": "cachekey()" - }, - { - "label": "chipSetFor()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/reaction-tooltip.ts", - "source_location": "L235", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_reaction_tooltip_chipsetfor", - "community": 54, - "community_name": "reaction-tooltip.ts", - "norm_label": "chipsetfor()" - }, - { - "label": "formatReactorNames()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/reaction-tooltip.ts", - "source_location": "L157", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_reaction_tooltip_formatreactornames", - "community": 54, - "community_name": "reaction-tooltip.ts", - "norm_label": "formatreactornames()" - }, - { - "label": "getCachedReactionUsers()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/reaction-tooltip.ts", - "source_location": "L89", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_reaction_tooltip_getcachedreactionusers", - "community": 54, - "community_name": "reaction-tooltip.ts", - "norm_label": "getcachedreactionusers()" - }, - { - "label": "hide()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/reaction-tooltip.ts", - "source_location": "L255", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_reaction_tooltip_hide", - "community": 54, - "community_name": "reaction-tooltip.ts", - "norm_label": "hide()" - }, - { - "label": "loadReactionUsers()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/reaction-tooltip.ts", - "source_location": "L101", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_reaction_tooltip_loadreactionusers", - "community": 54, - "community_name": "reaction-tooltip.ts", - "norm_label": "loadreactionusers()" - }, - { - "label": "removeTooltip()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/reaction-tooltip.ts", - "source_location": "L251", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_reaction_tooltip_removetooltip", - "community": 54, - "community_name": "reaction-tooltip.ts", - "norm_label": "removetooltip()" - }, - { - "label": "makeChip()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/reaction-tooltip.test.ts", - "source_location": "L194", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_reaction_tooltip_test_makechip", - "community": 54, - "community_name": "reaction-tooltip.ts", - "norm_label": "makechip()" - }, - { - "label": "user()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/reaction-tooltip.test.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_reaction_tooltip_test_user", - "community": 54, - "community_name": "reaction-tooltip.ts", - "norm_label": "user()" - }, - { - "label": ".addProfile()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L170", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_profilemanager_addprofile", - "community": 64, - "community_name": "ProfileManager", - "norm_label": ".addprofile()" - }, - { - "label": ".checkAllHealth()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L195", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_profilemanager_checkallhealth", - "community": 64, - "community_name": "ProfileManager", - "norm_label": ".checkallhealth()" - }, - { - "label": ".checkHealth()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L192", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_profilemanager_checkhealth", - "community": 64, - "community_name": "ProfileManager", - "norm_label": ".checkhealth()" - }, - { - "label": ".exportProfiles()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L198", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_profilemanager_exportprofiles", - "community": 64, - "community_name": "ProfileManager", - "norm_label": ".exportprofiles()" - }, - { - "label": ".getAll()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L164", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_profilemanager_getall", - "community": 64, - "community_name": "ProfileManager", - "norm_label": ".getall()" - }, - { - "label": ".getAutoConnectProfile()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L179", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_profilemanager_getautoconnectprofile", - "community": 64, - "community_name": "ProfileManager", - "norm_label": ".getautoconnectprofile()" - }, - { - "label": ".getById()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L167", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_profilemanager_getbyid", - "community": 64, - "community_name": "ProfileManager", - "norm_label": ".getbyid()" - }, - { - "label": ".importProfiles()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L201", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_profilemanager_importprofiles", - "community": 64, - "community_name": "ProfileManager", - "norm_label": ".importprofiles()" - }, - { - "label": ".loadProfiles()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L158", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_profilemanager_loadprofiles", - "community": 64, - "community_name": "ProfileManager", - "norm_label": ".loadprofiles()" - }, - { - "label": ".removeProfile()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L176", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_profilemanager_removeprofile", - "community": 64, - "community_name": "ProfileManager", - "norm_label": ".removeprofile()" - }, - { - "label": ".saveProfiles()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L161", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_profilemanager_saveprofiles", - "community": 64, - "community_name": "ProfileManager", - "norm_label": ".saveprofiles()" - }, - { - "label": ".setAutoLogin()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L186", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_profilemanager_setautologin", - "community": 64, - "community_name": "ProfileManager", - "norm_label": ".setautologin()" - }, - { - "label": ".setLastConnected()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L189", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_profilemanager_setlastconnected", - "community": 64, - "community_name": "ProfileManager", - "norm_label": ".setlastconnected()" - }, - { - "label": ".updateProfile()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L173", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_profilemanager_updateprofile", - "community": 64, - "community_name": "ProfileManager", - "norm_label": ".updateprofile()" - }, - { - "label": "ensureHttpProxy()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/httpProxy.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_httpproxy_ensurehttpproxy", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "ensurehttpproxy()" - }, - { - "label": "stopHttpProxy()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/httpProxy.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_httpproxy_stophttpproxy", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "stophttpproxy()" - }, - { - "label": "createProfileManager()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L204", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_createprofilemanager", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "createprofilemanager()" - }, - { - "label": "createTauriBackend()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L125", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_createtauribackend", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "createtauribackend()" - }, - { - "label": "isValidProfileShape()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L79", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_isvalidprofileshape", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "isvalidprofileshape()" - }, - { - "label": "isValidStoredData()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L96", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_isvalidstoreddata", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "isvalidstoreddata()" - }, - { - "label": "isValidStoredEnvelope()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L113", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_isvalidstoredenvelope", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "isvalidstoredenvelope()" - }, - { - "label": ".load()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_persistencebackend_load", - "community": 69, - "community_name": "profiles.ts", - "norm_label": ".load()" - }, - { - "label": ".save()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/profiles.ts", - "source_location": "L66", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_profiles_persistencebackend_save", - "community": 69, - "community_name": "profiles.ts", - "norm_label": ".save()" - }, - { - "label": "createStore()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/store.ts", - "source_location": "L102", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_store_createstore", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "createstore()" - }, - { - "label": "shallowEqual()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/store.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_store_shallowequal", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "shallowequal()" - }, - { - "label": ".flush()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/store.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_store_store_flush", - "community": 69, - "community_name": "profiles.ts", - "norm_label": ".flush()" - }, - { - "label": ".getState()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/store.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_store_store_getstate", - "community": 69, - "community_name": "profiles.ts", - "norm_label": ".getstate()" - }, - { - "label": ".select()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/store.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_store_store_select", - "community": 69, - "community_name": "profiles.ts", - "norm_label": ".select()" - }, - { - "label": ".setState()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/store.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_store_store_setstate", - "community": 69, - "community_name": "profiles.ts", - "norm_label": ".setstate()" - }, - { - "label": ".subscribe()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/store.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_store_store_subscribe", - "community": 69, - "community_name": "profiles.ts", - "norm_label": ".subscribe()" - }, - { - "label": ".subscribeSelector()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/store.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_store_store_subscribeselector", - "community": 69, - "community_name": "profiles.ts", - "norm_label": ".subscribeselector()" - }, - { - "label": ".destroy()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/ServerPanel.ts", - "source_location": "L64", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_serverpanel_serverpanelapi_destroy", - "community": 69, - "community_name": "profiles.ts", - "norm_label": ".destroy()" - }, - { - "label": ".renderProfiles()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/ServerPanel.ts", - "source_location": "L62", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_serverpanel_serverpanelapi_renderprofiles", - "community": 69, - "community_name": "profiles.ts", - "norm_label": ".renderprofiles()" - }, - { - "label": ".updateHealthStatus()", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/ServerPanel.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_serverpanel_serverpanelapi_updatehealthstatus", - "community": 69, - "community_name": "profiles.ts", - "norm_label": ".updatehealthstatus()" - }, - { - "label": "createMockBackend()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/profiles.test.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_profiles_test_createmockbackend", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "createmockbackend()" - }, - { - "label": "createMockFetch()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/profiles.test.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_profiles_test_createmockfetch", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "createmockfetch()" - }, - { - "label": "jsonResponse()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/profiles.test.ts", - "source_location": "L60", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_profiles_test_jsonresponse", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "jsonresponse()" - }, - { - "label": "mgr()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/profiles.test.ts", - "source_location": "L106", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_profiles_test_mgr", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "mgr()" - }, - { - "label": "nextUuid()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/profiles.test.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_profiles_test_nextuuid", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "nextuuid()" - }, - { - "label": "freshStore()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/store.test.ts", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_store_test_freshstore", - "community": 69, - "community_name": "profiles.ts", - "norm_label": "freshstore()" - }, - { - "label": "buildAdaptiveLenses()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.js", - "source_location": "L343", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_buildadaptivelenses", - "community": 77, - "community_name": "bughunt.js", - "norm_label": "buildadaptivelenses()" - }, - { - "label": "buildReport()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.js", - "source_location": "L686", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_buildreport", - "community": 77, - "community_name": "bughunt.js", - "norm_label": "buildreport()" - }, - { - "label": "clusterOf()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.js", - "source_location": "L297", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_clusterof", - "community": 77, - "community_name": "bughunt.js", - "norm_label": "clusterof()" - }, - { - "label": "convergenceTable()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.js", - "source_location": "L427", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_convergencetable", - "community": 77, - "community_name": "bughunt.js", - "norm_label": "convergencetable()" - }, - { - "label": "dedupe()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.js", - "source_location": "L406", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_dedupe", - "community": 77, - "community_name": "bughunt.js", - "norm_label": "dedupe()" - }, - { - "label": "drawExploreFiles()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.js", - "source_location": "L309", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_drawexplorefiles", - "community": 77, - "community_name": "bughunt.js", - "norm_label": "drawexplorefiles()" - }, - { - "label": "exploreLens()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.js", - "source_location": "L325", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_explorelens", - "community": 77, - "community_name": "bughunt.js", - "norm_label": "explorelens()" - }, - { - "label": "familyName()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.js", - "source_location": "L291", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_familyname", - "community": 77, - "community_name": "bughunt.js", - "norm_label": "familyname()" - }, - { - "label": "finderPrompt()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.js", - "source_location": "L498", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_finderprompt", - "community": 77, - "community_name": "bughunt.js", - "norm_label": "finderprompt()" - }, - { - "label": "isDup()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.js", - "source_location": "L395", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_isdup", - "community": 77, - "community_name": "bughunt.js", - "norm_label": "isdup()" - }, - { - "label": "lensesForRound()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.js", - "source_location": "L284", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_lensesforround", - "community": 77, - "community_name": "bughunt.js", - "norm_label": "lensesforround()" - }, - { - "label": "normTitle()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.js", - "source_location": "L385", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_normtitle", - "community": 77, - "community_name": "bughunt.js", - "norm_label": "normtitle()" - }, - { - "label": "remainingBudget()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.js", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_remainingbudget", - "community": 77, - "community_name": "bughunt.js", - "norm_label": "remainingbudget()" - }, - { - "label": "seenBlock()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.js", - "source_location": "L422", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_seenblock", - "community": 77, - "community_name": "bughunt.js", - "norm_label": "seenblock()" - }, - { - "label": "sum()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.js", - "source_location": "L669", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_sum", - "community": 77, - "community_name": "bughunt.js", - "norm_label": "sum()" - }, - { - "label": "verifyPrompt()", - "file_type": "code", - "source_file": ".claude/workflows/bughunt.js", - "source_location": "L505", - "_callable": true, - "_origin": "ast", - "id": "claude_workflows_bughunt_verifyprompt", - "community": 77, - "community_name": "bughunt.js", - "norm_label": "verifyprompt()" - }, - { - "label": "byLabel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EmojiAutocomplete.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_emojiautocomplete_bylabel", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "bylabel()" - }, - { - "label": "createEmojiAutocomplete()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EmojiAutocomplete.ts", - "source_location": "L145", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_emojiautocomplete_createemojiautocomplete", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "createemojiautocomplete()" - }, - { - "label": "filterEmojiSuggestions()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EmojiAutocomplete.ts", - "source_location": "L83", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_emojiautocomplete_filteremojisuggestions", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "filteremojisuggestions()" - }, - { - "label": "addRecentEmoji()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EmojiPicker.ts", - "source_location": "L526", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_emojipicker_addrecentemoji", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "addrecentemoji()" - }, - { - "label": "createEmojiPicker()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EmojiPicker.ts", - "source_location": "L540", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_emojipicker_createemojipicker", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "createemojipicker()" - }, - { - "label": "getRecentEmoji()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EmojiPicker.ts", - "source_location": "L514", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_emojipicker_getrecentemoji", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "getrecentemoji()" - }, - { - "label": "createInlineAutocomplete()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/inline-autocomplete.ts", - "source_location": "L82", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_inline_autocomplete_createinlineautocomplete", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "createinlineautocomplete()" - }, - { - "label": ".destroy()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/inline-autocomplete.ts", - "source_location": "L70", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_inline_autocomplete_inlineautocompletecomponent_destroy", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": ".destroy()" - }, - { - "label": ".handleKeydown()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/inline-autocomplete.ts", - "source_location": "L69", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_inline_autocomplete_inlineautocompletecomponent_handlekeydown", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": ".handlekeydown()" - }, - { - "label": ".setQuery()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/inline-autocomplete.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_inline_autocomplete_inlineautocompletecomponent_setquery", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": ".setquery()" - }, - { - "label": "byLabel()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MentionAutocomplete.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_mentionautocomplete_bylabel", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "bylabel()" - }, - { - "label": "createMentionAutocomplete()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MentionAutocomplete.ts", - "source_location": "L119", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_mentionautocomplete_creatementionautocomplete", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "creatementionautocomplete()" - }, - { - "label": "filterMentionSuggestions()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MentionAutocomplete.ts", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_mentionautocomplete_filtermentionsuggestions", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "filtermentionsuggestions()" - }, - { - "label": "renderMentionRow()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MentionAutocomplete.ts", - "source_location": "L111", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_mentionautocomplete_rendermentionrow", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "rendermentionrow()" - }, - { - "label": "appendBlocks()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/content-parser.ts", - "source_location": "L390", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_content_parser_appendblocks", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "appendblocks()" - }, - { - "label": "appendInline()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/content-parser.ts", - "source_location": "L118", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_content_parser_appendinline", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "appendinline()" - }, - { - "label": "buildChannelNode()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/content-parser.ts", - "source_location": "L234", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_content_parser_buildchannelnode", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "buildchannelnode()" - }, - { - "label": "buildList()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/content-parser.ts", - "source_location": "L362", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_content_parser_buildlist", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "buildlist()" - }, - { - "label": "buildMaskedLink()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/content-parser.ts", - "source_location": "L99", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_content_parser_buildmaskedlink", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "buildmaskedlink()" - }, - { - "label": "buildMentionNode()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/content-parser.ts", - "source_location": "L213", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_content_parser_buildmentionnode", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "buildmentionnode()" - }, - { - "label": "buildMessageLinkNode()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/content-parser.ts", - "source_location": "L262", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_content_parser_buildmessagelinknode", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "buildmessagelinknode()" - }, - { - "label": "buildSpoiler()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/content-parser.ts", - "source_location": "L68", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_content_parser_buildspoiler", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "buildspoiler()" - }, - { - "label": "renderCodeBlock()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/content-parser.ts", - "source_location": "L467", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_content_parser_rendercodeblock", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "rendercodeblock()" - }, - { - "label": "renderInlineContent()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/content-parser.ts", - "source_location": "L153", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_content_parser_renderinlinecontent", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "renderinlinecontent()" - }, - { - "label": "renderMentionSegment()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/content-parser.ts", - "source_location": "L300", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_content_parser_rendermentionsegment", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "rendermentionsegment()" - }, - { - "label": "renderMessageContent()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/content-parser.ts", - "source_location": "L509", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_content_parser_rendermessagecontent", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "rendermessagecontent()" - }, - { - "label": "splitCodeFences()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/content-parser.ts", - "source_location": "L438", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_content_parser_splitcodefences", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "splitcodefences()" - }, - { - "label": "buildCustomEmojiImage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/custom-emoji.ts", - "source_location": "L93", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_custom_emoji_buildcustomemojiimage", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "buildcustomemojiimage()" - }, - { - "label": "buildCustomEmojiNode()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/custom-emoji.ts", - "source_location": "L111", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_custom_emoji_buildcustomemojinode", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "buildcustomemojinode()" - }, - { - "label": "isEmojiOnlyMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/custom-emoji.ts", - "source_location": "L59", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_custom_emoji_isemojionlymessage", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "isemojionlymessage()" - }, - { - "label": "addKeyActivation()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/reactions.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_reactions_addkeyactivation", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "addkeyactivation()" - }, - { - "label": "renderReactions()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/reactions.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_reactions_renderreactions", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "renderreactions()" - }, - { - "label": "highlightCode()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/syntax-highlight.ts", - "source_location": "L204", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_syntax_highlight_highlightcode", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "highlightcode()" - }, - { - "label": "resolveLanguage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/syntax-highlight.ts", - "source_location": "L194", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_syntax_highlight_resolvelanguage", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "resolvelanguage()" - }, - { - "label": "createMessageInput()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MessageInput.ts", - "source_location": "L163", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_messageinput_createmessageinput", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "createmessageinput()" - }, - { - "label": "markGifUnavailable()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MessageInput.ts", - "source_location": "L157", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_messageinput_markgifunavailable", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "markgifunavailable()" - }, - { - "label": "wrapWithMarker()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MessageInput.ts", - "source_location": "L83", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_messageinput_wrapwithmarker", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "wrapwithmarker()" - }, - { - "label": "findChannelByName()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/channel-navigation.ts", - "source_location": "L72", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_channel_navigation_findchannelbyname", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "findchannelbyname()" - }, - { - "label": "highlightsCurrentUser()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/mentions.ts", - "source_location": "L118", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_mentions_highlightscurrentuser", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "highlightscurrentuser()" - }, - { - "label": "isEveryoneToken()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/mentions.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_mentions_iseveryonetoken", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "iseveryonetoken()" - }, - { - "label": "mentionsCurrentUser()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/mentions.ts", - "source_location": "L105", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_mentions_mentionscurrentuser", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "mentionscurrentuser()" - }, - { - "label": "mentionSpellings()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/mentions.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_mentions_mentionspellings", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "mentionspellings()" - }, - { - "label": "resolveMentionsFromContent()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/mentions.ts", - "source_location": "L88", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_mentions_resolvementionsfromcontent", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "resolvementionsfromcontent()" - }, - { - "label": "resolveMentionUserId()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/mentions.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_mentions_resolvementionuserid", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "resolvementionuserid()" - }, - { - "label": "setRoles()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/channels.store.ts", - "source_location": "L127", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_channels_store_setroles", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "setroles()" - }, - { - "label": "clearCustomEmoji()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/emoji.store.ts", - "source_location": "L69", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_emoji_store_clearcustomemoji", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "clearcustomemoji()" - }, - { - "label": "listCustomEmoji()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/emoji.store.ts", - "source_location": "L87", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_emoji_store_listcustomemoji", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "listcustomemoji()" - }, - { - "label": "resolveEmoji()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/emoji.store.ts", - "source_location": "L77", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_emoji_store_resolveemoji", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "resolveemoji()" - }, - { - "label": "setCustomEmoji()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/emoji.store.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_emoji_store_setcustomemoji", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "setcustomemoji()" - }, - { - "label": "seedMembers()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/autocomplete-filters.property.test.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_autocomplete_filters_property_test_seedmembers", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "seedmembers()" - }, - { - "label": "signInAs()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/autocomplete-filters.property.test.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_autocomplete_filters_property_test_signinas", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "signinas()" - }, - { - "label": "inline()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/content-markdown.test.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_content_markdown_test_inline", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "inline()" - }, - { - "label": "message()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/content-markdown.test.ts", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_content_markdown_test_message", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "message()" - }, - { - "label": "seedStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/content-markdown.test.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_content_markdown_test_seedstores", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "seedstores()" - }, - { - "label": "makeMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/custom-emoji.test.ts", - "source_location": "L261", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_custom_emoji_test_makemessage", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "makemessage()" - }, - { - "label": "reactionOptions()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/custom-emoji.test.ts", - "source_location": "L280", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_custom_emoji_test_reactionoptions", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "reactionoptions()" - }, - { - "label": "render()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/custom-emoji.test.ts", - "source_location": "L155", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_custom_emoji_test_render", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "render()" - }, - { - "label": "key()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/emoji-autocomplete.test.ts", - "source_location": "L289", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_emoji_autocomplete_test_key", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "key()" - }, - { - "label": "mount()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/emoji-autocomplete.test.ts", - "source_location": "L135", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_emoji_autocomplete_test_mount", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "mount()" - }, - { - "label": "popupEl()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/emoji-autocomplete.test.ts", - "source_location": "L372", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_emoji_autocomplete_test_popupel", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "popupel()" - }, - { - "label": "press()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/emoji-autocomplete.test.ts", - "source_location": "L376", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_emoji_autocomplete_test_press", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "press()" - }, - { - "label": "textarea()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/emoji-autocomplete.test.ts", - "source_location": "L360", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_emoji_autocomplete_test_textarea", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "textarea()" - }, - { - "label": "type()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/emoji-autocomplete.test.ts", - "source_location": "L364", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_emoji_autocomplete_test_type", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "type()" - }, - { - "label": "makePicker()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/emoji-picker.test.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_emoji_picker_test_makepicker", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "makepicker()" - }, - { - "label": "key()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/mention-autocomplete.test.ts", - "source_location": "L150", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_mention_autocomplete_test_key", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "key()" - }, - { - "label": "labels()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/mention-autocomplete.test.ts", - "source_location": "L154", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_mention_autocomplete_test_labels", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "labels()" - }, - { - "label": "popupEl()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/mention-autocomplete.test.ts", - "source_location": "L353", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_mention_autocomplete_test_popupel", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "popupel()" - }, - { - "label": "press()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/mention-autocomplete.test.ts", - "source_location": "L357", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_mention_autocomplete_test_press", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "press()" - }, - { - "label": "seedMembers()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/mention-autocomplete.test.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_mention_autocomplete_test_seedmembers", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "seedmembers()" - }, - { - "label": "signInAs()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/mention-autocomplete.test.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_mention_autocomplete_test_signinas", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "signinas()" - }, - { - "label": "textarea()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/mention-autocomplete.test.ts", - "source_location": "L341", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_mention_autocomplete_test_textarea", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "textarea()" - }, - { - "label": "type()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/mention-autocomplete.test.ts", - "source_location": "L345", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_mention_autocomplete_test_type", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "type()" - }, - { - "label": "seedStores()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/mention-emoji-parsing.property.test.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_mention_emoji_parsing_property_test_seedstores", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "seedstores()" - }, - { - "label": "makeMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/mentions-render.test.ts", - "source_location": "L250", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_mentions_render_test_makemessage", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "makemessage()" - }, - { - "label": "render()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/mentions-render.test.ts", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_mentions_render_test_render", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "render()" - }, - { - "label": "rowClasses()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/mentions-render.test.ts", - "source_location": "L282", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_mentions_render_test_rowclasses", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "rowclasses()" - }, - { - "label": "getAsFile()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-input.test.ts", - "source_location": "L1119", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_input_test_getasfile", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "getasfile()" - }, - { - "label": "makeOptions()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-input.test.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_input_test_makeoptions", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "makeoptions()" - }, - { - "label": "mountWithSelection()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-input.test.ts", - "source_location": "L1254", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_input_test_mountwithselection", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "mountwithselection()" - }, - { - "label": "press()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/message-input.test.ts", - "source_location": "L1268", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_message_input_test_press", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "press()" - }, - { - "label": "fireKey()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/reactions-keyboard.test.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_reactions_keyboard_test_firekey", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "firekey()" - }, - { - "label": "makeMessage()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/reactions-keyboard.test.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_reactions_keyboard_test_makemessage", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "makemessage()" - }, - { - "label": "reactionOptions()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/reactions-keyboard.test.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_reactions_keyboard_test_reactionoptions", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "reactionoptions()" - }, - { - "label": "signInAs()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-area.test.ts", - "source_location": "L2679", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_area_test_signinas", - "community": 8, - "community_name": "content-parser.ts", - "norm_label": "signinas()" - }, - { - "label": ".cleanupAll()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1570", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_cleanupall", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".cleanupall()" - }, - { - "label": ".clearOnError()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L984", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_clearonerror", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".clearonerror()" - }, - { - "label": ".clearOnRemoteVideo()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L995", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_clearonremotevideo", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".clearonremotevideo()" - }, - { - "label": "._connecting()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L243", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_connecting", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": "._connecting()" - }, - { - "label": "._currentChannelId()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L215", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_currentchannelid", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": "._currentchannelid()" - }, - { - "label": ".disableCamera()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1651", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_disablecamera", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".disablecamera()" - }, - { - "label": ".disableScreenshare()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1659", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_disablescreenshare", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".disablescreenshare()" - }, - { - "label": "._e2eeEpoch()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L172", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_e2eeepoch", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": "._e2eeepoch()" - }, - { - "label": ".enableCamera()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1647", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_enablecamera", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".enablecamera()" - }, - { - "label": ".enableScreenshare()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1655", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_enablescreenshare", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".enablescreenshare()" - }, - { - "label": ".getLocalCameraStream()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1725", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_getlocalcamerastream", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".getlocalcamerastream()" - }, - { - "label": ".getLocalScreenshareStream()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1729", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_getlocalscreensharestream", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".getlocalscreensharestream()" - }, - { - "label": ".getRemoteVideoStream()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1734", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_getremotevideostream", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".getremotevideostream()" - }, - { - "label": ".getScreenshareAudioMuted()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1695", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_getscreenshareaudiomuted", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".getscreenshareaudiomuted()" - }, - { - "label": ".getScreenshareAudioVolume()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1687", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_getscreenshareaudiovolume", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".getscreenshareaudiovolume()" - }, - { - "label": ".getUserVolume()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1679", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_getuservolume", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".getuservolume()" - }, - { - "label": ".handleE2EEAnnounce()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1457", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_handlee2eeannounce", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".handlee2eeannounce()" - }, - { - "label": ".handleE2EEOffer()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1469", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_handlee2eeoffer", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".handlee2eeoffer()" - }, - { - "label": ".handleParticipantLeft()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1481", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_handleparticipantleft", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".handleparticipantleft()" - }, - { - "label": "._lastDirectUrl()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L236", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_lastdirecturl", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": "._lastdirecturl()" - }, - { - "label": "._lastUrl()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L229", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_lasturl", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": "._lasturl()" - }, - { - "label": "._latestToken()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L222", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_latesttoken", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": "._latesttoken()" - }, - { - "label": ".muteScreenshareAudio()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1691", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_mutescreenshareaudio", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".mutescreenshareaudio()" - }, - { - "label": "._peerPublicKeys()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L169", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_peerpublickeys", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": "._peerpublickeys()" - }, - { - "label": "._pendingAnnounces()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L187", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_pendingannounces", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": "._pendingannounces()" - }, - { - "label": ".reapplyAudioProcessing()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1721", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_reapplyaudioprocessing", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".reapplyaudioprocessing()" - }, - { - "label": "._reconnectAc()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L248", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_reconnectac", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": "._reconnectac()" - }, - { - "label": ".rePinPeerIdentity()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1449", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_repinpeeridentity", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".repinpeeridentity()" - }, - { - "label": "._room()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L210", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_room", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": "._room()" - }, - { - "label": ".rotateKeyPeriodically()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L195", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_rotatekeyperiodically", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".rotatekeyperiodically()" - }, - { - "label": "._rotatingKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L175", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_rotatingkey", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": "._rotatingkey()" - }, - { - "label": "._rotationPending()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L181", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_rotationpending", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": "._rotationpending()" - }, - { - "label": ".setInputVolume()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1709", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_setinputvolume", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".setinputvolume()" - }, - { - "label": ".setOnError()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L980", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_setonerror", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".setonerror()" - }, - { - "label": ".setOnRemoteVideo()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L988", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_setonremotevideo", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".setonremotevideo()" - }, - { - "label": ".setOnRemoteVideoRemoved()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L991", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_setonremotevideoremoved", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".setonremotevideoremoved()" - }, - { - "label": ".setOutputVolume()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1713", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_setoutputvolume", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".setoutputvolume()" - }, - { - "label": ".setScreenshareAudioVolume()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1683", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_setscreenshareaudiovolume", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".setscreenshareaudiovolume()" - }, - { - "label": ".setServerHost()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L972", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_setserverhost", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".setserverhost()" - }, - { - "label": ".setUserVolume()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1675", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_setuservolume", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".setuservolume()" - }, - { - "label": ".setVoiceSensitivity()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1717", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_setvoicesensitivity", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".setvoicesensitivity()" - }, - { - "label": ".setWsClient()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L969", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_setwsclient", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".setwsclient()" - }, - { - "label": ".switchInputDevice()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1665", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_switchinputdevice", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".switchinputdevice()" - }, - { - "label": ".switchOutputDevice()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1669", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_switchoutputdevice", - "community": 84, - "community_name": "LiveKitSession", - "norm_label": ".switchoutputdevice()" - }, - { - "label": "applyTheme()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/helpers.ts", - "source_location": "L124", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_helpers_applytheme", - "community": 89, - "community_name": "themes.ts", - "norm_label": "applytheme()" - }, - { - "label": "applyStoredAppearance()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/appearance.ts", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_appearance_applystoredappearance", - "community": 89, - "community_name": "themes.ts", - "norm_label": "applystoredappearance()" - }, - { - "label": "syncOsMotionListener()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/os-motion.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_os_motion_syncosmotionlistener", - "community": 89, - "community_name": "themes.ts", - "norm_label": "syncosmotionlistener()" - }, - { - "label": "applyThemeByName()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/themes.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_themes_applythemebyname", - "community": 89, - "community_name": "themes.ts", - "norm_label": "applythemebyname()" - }, - { - "label": "deleteCustomTheme()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/themes.ts", - "source_location": "L145", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_themes_deletecustomtheme", - "community": 89, - "community_name": "themes.ts", - "norm_label": "deletecustomtheme()" - }, - { - "label": "exportTheme()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/themes.ts", - "source_location": "L154", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_themes_exporttheme", - "community": 89, - "community_name": "themes.ts", - "norm_label": "exporttheme()" - }, - { - "label": "getActiveThemeName()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/themes.ts", - "source_location": "L90", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_themes_getactivethemename", - "community": 89, - "community_name": "themes.ts", - "norm_label": "getactivethemename()" - }, - { - "label": "isKnownThemeName()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/themes.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_themes_isknownthemename", - "community": 89, - "community_name": "themes.ts", - "norm_label": "isknownthemename()" - }, - { - "label": "listThemeNames()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/themes.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_themes_listthemenames", - "community": 89, - "community_name": "themes.ts", - "norm_label": "listthemenames()" - }, - { - "label": "loadCustomTheme()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/themes.ts", - "source_location": "L122", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_themes_loadcustomtheme", - "community": 89, - "community_name": "themes.ts", - "norm_label": "loadcustomtheme()" - }, - { - "label": "restoreTheme()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/themes.ts", - "source_location": "L162", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_themes_restoretheme", - "community": 89, - "community_name": "themes.ts", - "norm_label": "restoretheme()" - }, - { - "label": "saveCustomTheme()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/themes.ts", - "source_location": "L117", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_themes_savecustomtheme", - "community": 89, - "community_name": "themes.ts", - "norm_label": "savecustomtheme()" - }, - { - "label": "applyCustomWithColors()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/themes.test.ts", - "source_location": "L108", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_themes_test_applycustomwithcolors", - "community": 89, - "community_name": "themes.ts", - "norm_label": "applycustomwithcolors()" - }, - { - "label": "createDmProfileSidebar()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/DmProfileSidebar.ts", - "source_location": "L118", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_dmprofilesidebar_createdmprofilesidebar", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "createdmprofilesidebar()" - }, - { - "label": "legacyNoteKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/DmProfileSidebar.ts", - "source_location": "L83", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_dmprofilesidebar_legacynotekey", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "legacynotekey()" - }, - { - "label": "loadNote()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/DmProfileSidebar.ts", - "source_location": "L91", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_dmprofilesidebar_loadnote", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "loadnote()" - }, - { - "label": "saveNote()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/DmProfileSidebar.ts", - "source_location": "L105", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_dmprofilesidebar_savenote", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "savenote()" - }, - { - "label": "scopedNoteKey()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/DmProfileSidebar.ts", - "source_location": "L87", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_dmprofilesidebar_scopednotekey", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "scopednotekey()" - }, - { - "label": "buildAvatar()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/DmSidebar.ts", - "source_location": "L111", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_dmsidebar_buildavatar", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "buildavatar()" - }, - { - "label": "paintAvatar()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/DmSidebar.ts", - "source_location": "L85", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_dmsidebar_paintavatar", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "paintavatar()" - }, - { - "label": "baseMime()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L66", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_basemime", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "basemime()" - }, - { - "label": "buildDownloadButton()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L455", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_builddownloadbutton", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "builddownloadbutton()" - }, - { - "label": "buildFileMeta()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L443", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_buildfilemeta", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "buildfilemeta()" - }, - { - "label": "clearAttachmentCaches()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L127", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_clearattachmentcaches", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "clearattachmentcaches()" - }, - { - "label": "closeDbAfterTransaction()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L228", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_closedbaftertransaction", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "closedbaftertransaction()" - }, - { - "label": "createObjectUrl()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L367", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_createobjecturl", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "createobjecturl()" - }, - { - "label": "downloadFile()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L631", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_downloadfile", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "downloadfile()" - }, - { - "label": "fetchImageAsDataUrl()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L286", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_fetchimageasdataurl", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "fetchimageasdataurl()" - }, - { - "label": "fetchMediaAsObjectUrl()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L389", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_fetchmediaasobjecturl", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "fetchmediaasobjecturl()" - }, - { - "label": "fetchServerFile()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L187", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_fetchserverfile", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "fetchserverfile()" - }, - { - "label": "formatFileSize()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L59", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_formatfilesize", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "formatfilesize()" - }, - { - "label": "idbGet()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L239", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_idbget", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "idbget()" - }, - { - "label": "idbPut()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L260", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_idbput", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "idbput()" - }, - { - "label": "isAudioMime()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L105", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_isaudiomime", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "isaudiomime()" - }, - { - "label": "isImageMime()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L74", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_isimagemime", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "isimagemime()" - }, - { - "label": "isSafeUrl()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L109", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_issafeurl", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "issafeurl()" - }, - { - "label": "isServerUrl()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L164", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_isserverurl", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "isserverurl()" - }, - { - "label": "isTrustedServerUrl()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L175", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_istrustedserverurl", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "istrustedserverurl()" - }, - { - "label": "isVideoMime()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L100", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_isvideomime", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "isvideomime()" - }, - { - "label": "openCacheDb()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L208", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_opencachedb", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "opencachedb()" - }, - { - "label": "renderAttachment()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L520", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_renderattachment", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "renderattachment()" - }, - { - "label": "renderAudioAttachment()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L496", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_renderaudioattachment", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "renderaudioattachment()" - }, - { - "label": "renderVideoAttachment()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L471", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_rendervideoattachment", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "rendervideoattachment()" - }, - { - "label": "resolveServerUrl()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L47", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_resolveserverurl", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "resolveserverurl()" - }, - { - "label": "revokeObjectUrl()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L373", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_revokeobjecturl", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "revokeobjecturl()" - }, - { - "label": "sanitizeContentType()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L158", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_sanitizecontenttype", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "sanitizecontenttype()" - }, - { - "label": "setServerHost()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_setserverhost", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "setserverhost()" - }, - { - "label": "uint8ToBase64()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/attachments.ts", - "source_location": "L274", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_attachments_uint8tobase64", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "uint8tobase64()" - }, - { - "label": "fetchOgMeta()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/embeds.ts", - "source_location": "L150", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_embeds_fetchogmeta", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "fetchogmeta()" - }, - { - "label": "isBlockedForPreview()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/embeds.ts", - "source_location": "L132", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_embeds_isblockedforpreview", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "isblockedforpreview()" - }, - { - "label": "isPrivateHost()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/embeds.ts", - "source_location": "L94", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_embeds_isprivatehost", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "isprivatehost()" - }, - { - "label": "parseIPv4Literal()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/embeds.ts", - "source_location": "L79", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_embeds_parseipv4literal", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "parseipv4literal()" - }, - { - "label": "parseOgTags()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/embeds.ts", - "source_location": "L51", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_embeds_parseogtags", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "parseogtags()" - }, - { - "label": "cacheImageHeight()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/media.ts", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_media_cacheimageheight", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "cacheimageheight()" - }, - { - "label": "extractUrls()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/media.ts", - "source_location": "L508", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_media_extracturls", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "extracturls()" - }, - { - "label": "extractYouTubeId()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/media.ts", - "source_location": "L90", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_media_extractyoutubeid", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "extractyoutubeid()" - }, - { - "label": "isDirectImageUrl()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/media.ts", - "source_location": "L247", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_media_isdirectimageurl", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "isdirectimageurl()" - }, - { - "label": "isGifUrl()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/media.ts", - "source_location": "L78", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_media_isgifurl", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "isgifurl()" - }, - { - "label": "isKlipyUrl()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/media.ts", - "source_location": "L68", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_media_isklipyurl", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "isklipyurl()" - }, - { - "label": "openImageLightbox()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/media.ts", - "source_location": "L357", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_media_openimagelightbox", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "openimagelightbox()" - }, - { - "label": "renderInlineImage()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/media.ts", - "source_location": "L257", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_media_renderinlineimage", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "renderinlineimage()" - }, - { - "label": "renderUrlEmbeds()", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/message-list/media.ts", - "source_location": "L520", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_components_message_list_media_renderurlembeds", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "renderurlembeds()" - }, - { - "label": "isRenderableAvatar()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/avatar.ts", - "source_location": "L74", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_avatar_isrenderableavatar", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "isrenderableavatar()" - }, - { - "label": "showContextMenu()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/context-menu.ts", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_context_menu_showcontextmenu", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "showcontextmenu()" - }, - { - "label": "getToken()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/auth.store.ts", - "source_location": "L114", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_auth_store_gettoken", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "gettoken()" - }, - { - "label": "imageResponse()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/attachments-auth.test.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_attachments_auth_test_imageresponse", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "imageresponse()" - }, - { - "label": "imageResponse()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/attachments-cache.test.ts", - "source_location": "L81", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_attachments_cache_test_imageresponse", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "imageresponse()" - }, - { - "label": "att()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/attachments-media.test.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_attachments_media_test_att", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "att()" - }, - { - "label": "makeOptions()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/dm-profile-sidebar.test.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_dm_profile_sidebar_test_makeoptions", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "makeoptions()" - }, - { - "label": "makeUser()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/dm-profile-sidebar.test.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_dm_profile_sidebar_test_makeuser", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "makeuser()" - }, - { - "label": "makeConvo()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/dm-sidebar.test.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_dm_sidebar_test_makeconvo", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "makeconvo()" - }, - { - "label": "mountWith()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/dm-sidebar.test.ts", - "source_location": "L568", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_dm_sidebar_test_mountwith", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "mountwith()" - }, - { - "label": "get()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/embeds.test.ts", - "source_location": "L268", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_embeds_test_get", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "get()" - }, - { - "label": "mockHtmlResponse()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/embeds.test.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_embeds_test_mockhtmlresponse", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "mockhtmlresponse()" - }, - { - "label": "mockSlowBodyResponse()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/embeds.test.ts", - "source_location": "L859", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_embeds_test_mockslowbodyresponse", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "mockslowbodyresponse()" - }, - { - "label": "oembedResponse()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/media-cache.test.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_media_cache_test_oembedresponse", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "oembedresponse()" - }, - { - "label": "fireImgError()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/media.test.ts", - "source_location": "L117", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_media_test_fireimgerror", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "fireimgerror()" - }, - { - "label": "fireImgLoad()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/media.test.ts", - "source_location": "L110", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_media_test_fireimgload", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "fireimgload()" - }, - { - "label": "mouseEvent()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/media.test.ts", - "source_location": "L124", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_media_test_mouseevent", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "mouseevent()" - }, - { - "label": "oembedFail()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/media.test.ts", - "source_location": "L90", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_media_test_oembedfail", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "oembedfail()" - }, - { - "label": "oembedResponse()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/media.test.ts", - "source_location": "L83", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_media_test_oembedresponse", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "oembedresponse()" - }, - { - "label": "syncPrefCache()", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/media.test.ts", - "source_location": "L103", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_tests_unit_media_test_syncprefcache", - "community": 9, - "community_name": "attachments.ts", - "norm_label": "syncprefcache()" - }, - { - "label": "attachDiagnosticListeners()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitDiagnostics.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitdiagnostics_attachdiagnosticlisteners", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "attachdiagnosticlisteners()" - }, - { - "label": ".clearTokenRefreshTimer()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L791", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_cleartokenrefreshtimer", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": ".cleartokenrefreshtimer()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L285", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_constructor", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": ".constructor()" - }, - { - "label": ".createRoom()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L392", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_createroom", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": ".createroom()" - }, - { - "label": ".leaveVoice()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1518", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_leavevoice", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": ".leavevoice()" - }, - { - "label": ".syncModuleRooms()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L460", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_livekitsession_syncmodulerooms", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": ".syncmodulerooms()" - }, - { - "label": "bumpGeneration()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L167", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_bumpgeneration", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "bumpgeneration()" - }, - { - "label": "disableCamera()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L300", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_disablecamera", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "disablecamera()" - }, - { - "label": "disableScreenshare()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L449", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_disablescreenshare", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "disablescreenshare()" - }, - { - "label": "enableCamera()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L220", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_enablecamera", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "enablecamera()" - }, - { - "label": "enableScreenshare()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L341", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_enablescreenshare", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "enablescreenshare()" - }, - { - "label": "getEffectiveScreenShareFps()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L87", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_geteffectivescreensharefps", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "geteffectivescreensharefps()" - }, - { - "label": "getLocalCameraStream()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L474", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_getlocalcamerastream", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "getlocalcamerastream()" - }, - { - "label": "getLocalScreenshareStream()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L482", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_getlocalscreensharestream", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "getlocalscreensharestream()" - }, - { - "label": "getRemoteVideoStream()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L490", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_getremotevideostream", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "getremotevideostream()" - }, - { - "label": "getScreenShareCaptureOptions()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L112", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_getscreensharecaptureoptions", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "getscreensharecaptureoptions()" - }, - { - "label": "getScreenShareFps()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L81", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_getscreensharefps", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "getscreensharefps()" - }, - { - "label": "getScreenShareMaxBitrate()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L97", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_getscreensharemaxbitrate", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "getscreensharemaxbitrate()" - }, - { - "label": "getStreamQuality()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L69", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_getstreamquality", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "getstreamquality()" - }, - { - "label": "registerPendingVideoEnable()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L183", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_registerpendingvideoenable", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "registerpendingvideoenable()" - }, - { - "label": "rollbackPendingVideo()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L193", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_rollbackpendingvideo", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "rollbackpendingvideo()" - }, - { - "label": "stopManualCameraTrack()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L208", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_stopmanualcameratrack", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "stopmanualcameratrack()" - }, - { - "label": "stopManualScreenTracks()", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/screenShare.ts", - "source_location": "L327", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_lib_screenshare_stopmanualscreentracks", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "stopmanualscreentracks()" - }, - { - "label": "setLocalCamera()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L422", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_setlocalcamera", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "setlocalcamera()" - }, - { - "label": "setLocalScreenshare()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L430", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_setlocalscreenshare", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "setlocalscreenshare()" - }, - { - "label": "setVoiceStatus()", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/voice.store.ts", - "source_location": "L353", - "_callable": true, - "_origin": "ast", - "id": "client_tauri_client_src_stores_voice_store_setvoicestatus", - "community": 95, - "community_name": "screenShare.ts", - "norm_label": "setvoicestatus()" - }, - { - "label": "MemberList.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "memberlist.ts" - }, - { - "label": "FALLBACK_ASSIGNABLE_ROLES", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L48", - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_fallback_assignable_roles", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "fallback_assignable_roles" - }, - { - "label": "FALLBACK_ROLE_COLORS", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L91", - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_fallback_role_colors", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "fallback_role_colors" - }, - { - "label": "FALLBACK_ROLE_GROUPS", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/MemberList.ts", - "source_location": "L100", - "_origin": "ast", - "id": "client_tauri_client_src_components_memberlist_fallback_role_groups", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "fallback_role_groups" - }, - { - "label": "TypingIndicator.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/TypingIndicator.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_typingindicator", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "typingindicator.ts" - }, - { - "label": "MAX_GROUP_DM_PARTICIPANTS", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/constants.ts", - "source_location": "L9", - "_origin": "ast", - "id": "client_tauri_client_src_lib_constants_max_group_dm_participants", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "max_group_dm_participants" - }, - { - "label": "disposable.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/disposable.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_lib_disposable", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "disposable.ts" - }, - { - "label": "members.store.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/members.store.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_stores_members_store", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "members.store.ts" - }, - { - "label": "INITIAL_STATE", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/members.store.ts", - "source_location": "L40", - "_origin": "ast", - "id": "client_tauri_client_src_stores_members_store_initial_state", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "initial_state" - }, - { - "label": "membersStore", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/members.store.ts", - "source_location": "L46", - "_origin": "ast", - "id": "client_tauri_client_src_stores_members_store_membersstore", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "membersstore" - }, - { - "label": "typingTimers", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/members.store.ts", - "source_location": "L49", - "_origin": "ast", - "id": "client_tauri_client_src_stores_members_store_typingtimers", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "typingtimers" - }, - { - "label": "test-utils.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/test-utils.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_test_utils", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "test-utils.ts" - }, - { - "label": "AUTH_INITIAL", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/test-utils.ts", - "source_location": "L25", - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_test_utils_auth_initial", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "auth_initial" - }, - { - "label": "CHANNELS_INITIAL", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/test-utils.ts", - "source_location": "L33", - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_test_utils_channels_initial", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "channels_initial" - }, - { - "label": "MEMBERS_INITIAL", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/test-utils.ts", - "source_location": "L39", - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_test_utils_members_initial", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "members_initial" - }, - { - "label": "MESSAGES_INITIAL", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/test-utils.ts", - "source_location": "L44", - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_test_utils_messages_initial", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "messages_initial" - }, - { - "label": "UI_INITIAL", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/test-utils.ts", - "source_location": "L66", - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_test_utils_ui_initial", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "ui_initial" - }, - { - "label": "VOICE_INITIAL", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/test-utils.ts", - "source_location": "L53", - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_test_utils_voice_initial", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "voice_initial" - }, - { - "label": "chat.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/chat.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_chat_test", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "chat.test.ts" - }, - { - "label": "TypingIndicator.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/components/TypingIndicator.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_components_typingindicator_test", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "typingindicator.test.ts" - }, - { - "label": "MEMBER_BOB", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/components/TypingIndicator.test.ts", - "source_location": "L6", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_components_typingindicator_test_member_bob", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "member_bob" - }, - { - "label": "MEMBER_CAROL", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/components/TypingIndicator.test.ts", - "source_location": "L15", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_components_typingindicator_test_member_carol", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "member_carol" - }, - { - "label": "disposable.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/disposable.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_disposable_test", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "disposable.test.ts" - }, - { - "label": "member-list.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-list.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_list_test", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "member-list.test.ts" - }, - { - "label": "testMembers", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-list.test.ts", - "source_location": "L49", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_list_test_testmembers", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "testmembers" - }, - { - "label": "member-picker-group.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-picker-group.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_picker_group_test", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "member-picker-group.test.ts" - }, - { - "label": "member-picker-modal.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-picker-modal.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_picker_modal_test", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "member-picker-modal.test.ts" - }, - { - "label": "member-profile-fields.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-profile-fields.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_profile_fields_test", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "member-profile-fields.test.ts" - }, - { - "label": "alice", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-profile-fields.test.ts", - "source_location": "L18", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_profile_fields_test_alice", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "alice" - }, - { - "label": "bob", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/member-profile-fields.test.ts", - "source_location": "L28", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_member_profile_fields_test_bob", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "bob" - }, - { - "label": "members.store.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/members.store.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_members_store_test", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "members.store.test.ts" - }, - { - "label": "MEMBER_ALICE", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/members.store.test.ts", - "source_location": "L17", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_members_store_test_member_alice", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "member_alice" - }, - { - "label": "MEMBER_BOB", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/members.store.test.ts", - "source_location": "L25", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_members_store_test_member_bob", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "member_bob" - }, - { - "label": "MEMBER_CAROL", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/members.store.test.ts", - "source_location": "L33", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_members_store_test_member_carol", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "member_carol" - }, - { - "label": "sidebar-member-section.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/sidebar-member-section.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_sidebar_member_section_test", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "sidebar-member-section.test.ts" - }, - { - "label": "typing-indicator.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/typing-indicator.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_typing_indicator_test", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "typing-indicator.test.ts" - }, - { - "label": "typingUsers", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/typing-indicator.test.ts", - "source_location": "L4", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_typing_indicator_test_typingusers", - "community": 0, - "community_name": "members.store.ts", - "norm_label": "typingusers" - }, - { - "label": "@tauri-apps/plugin-autostart", - "file_type": "code", - "source_file": "@tauri-apps/plugin-autostart", - "confidence": "EXTRACTED", - "_origin": "ast", - "id": "plugin_autostart", - "community": 1, - "community_name": "createElement", - "norm_label": "@tauri-apps/plugin-autostart" - }, - { - "label": "@tauri-apps/plugin-process", - "file_type": "code", - "source_file": "@tauri-apps/plugin-process", - "confidence": "EXTRACTED", - "_origin": "ast", - "id": "plugin_process", - "community": 1, - "community_name": "createElement", - "norm_label": "@tauri-apps/plugin-process" - }, - { - "label": "CertMismatchModal.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/CertMismatchModal.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_certmismatchmodal", - "community": 1, - "community_name": "createElement", - "norm_label": "certmismatchmodal.ts" - }, - { - "label": "ConnectedOverlay.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/ConnectedOverlay.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_connectedoverlay", - "community": 1, - "community_name": "createElement", - "norm_label": "connectedoverlay.ts" - }, - { - "label": "CreateChannelModal.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/CreateChannelModal.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_createchannelmodal", - "community": 1, - "community_name": "createElement", - "norm_label": "createchannelmodal.ts" - }, - { - "label": "CHANNEL_TYPES", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/CreateChannelModal.ts", - "source_location": "L31", - "_origin": "ast", - "id": "client_tauri_client_src_components_createchannelmodal_channel_types", - "community": 1, - "community_name": "createElement", - "norm_label": "channel_types" - }, - { - "label": "DeleteChannelModal.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/DeleteChannelModal.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_deletechannelmodal", - "community": 1, - "community_name": "createElement", - "norm_label": "deletechannelmodal.ts" - }, - { - "label": "EditChannelModal.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EditChannelModal.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_editchannelmodal", - "community": 1, - "community_name": "createElement", - "norm_label": "editchannelmodal.ts" - }, - { - "label": "MAX_SLOW_MODE_SECONDS", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EditChannelModal.ts", - "source_location": "L26", - "_origin": "ast", - "id": "client_tauri_client_src_components_editchannelmodal_max_slow_mode_seconds", - "community": 1, - "community_name": "createElement", - "norm_label": "max_slow_mode_seconds" - }, - { - "label": "MAX_VOICE_LIMIT", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EditChannelModal.ts", - "source_location": "L28", - "_origin": "ast", - "id": "client_tauri_client_src_components_editchannelmodal_max_voice_limit", - "community": 1, - "community_name": "createElement", - "norm_label": "max_voice_limit" - }, - { - "label": "SLOW_MODE_PRESETS", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/EditChannelModal.ts", - "source_location": "L31", - "_origin": "ast", - "id": "client_tauri_client_src_components_editchannelmodal_slow_mode_presets", - "community": 1, - "community_name": "createElement", - "norm_label": "slow_mode_presets" - }, - { - "label": "IncomingCallBanner.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/IncomingCallBanner.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_incomingcallbanner", - "community": 1, - "community_name": "createElement", - "norm_label": "incomingcallbanner.ts" - }, - { - "label": "InviteManager.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/InviteManager.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_invitemanager", - "community": 1, - "community_name": "createElement", - "norm_label": "invitemanager.ts" - }, - { - "label": "PinnedMessages.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/PinnedMessages.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_pinnedmessages", - "community": 1, - "community_name": "createElement", - "norm_label": "pinnedmessages.ts" - }, - { - "label": "QuickSwitcher.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/QuickSwitcher.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_quickswitcher", - "community": 1, - "community_name": "createElement", - "norm_label": "quickswitcher.ts" - }, - { - "label": "QuickSwitchOverlay.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/QuickSwitchOverlay.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_quickswitchoverlay", - "community": 1, - "community_name": "createElement", - "norm_label": "quickswitchoverlay.ts" - }, - { - "label": "SearchOverlay.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/SearchOverlay.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_searchoverlay", - "community": 1, - "community_name": "createElement", - "norm_label": "searchoverlay.ts" - }, - { - "label": "AccessibilityTab.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccessibilityTab.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accessibilitytab", - "community": 1, - "community_name": "createElement", - "norm_label": "accessibilitytab.ts" - }, - { - "label": "TOGGLES", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccessibilityTab.ts", - "source_location": "L17", - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accessibilitytab_toggles", - "community": 1, - "community_name": "createElement", - "norm_label": "toggles" - }, - { - "label": "AccountTab.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccountTab.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accounttab", - "community": 1, - "community_name": "createElement", - "norm_label": "accounttab.ts" - }, - { - "label": "STATUS_OPTIONS", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AccountTab.ts", - "source_location": "L826", - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_accounttab_status_options", - "community": 1, - "community_name": "createElement", - "norm_label": "status_options" - }, - { - "label": "AdvancedTab.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AdvancedTab.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_advancedtab", - "community": 1, - "community_name": "createElement", - "norm_label": "advancedtab.ts" - }, - { - "label": "log", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AdvancedTab.ts", - "source_location": "L17", - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_advancedtab_log", - "community": 1, - "community_name": "createElement", - "norm_label": "log" - }, - { - "label": "AppearanceTab.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/AppearanceTab.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_appearancetab", - "community": 1, - "community_name": "createElement", - "norm_label": "appearancetab.ts" - }, - { - "label": "settings/helpers.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/helpers.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_helpers", - "community": 1, - "community_name": "createElement", - "norm_label": "settings/helpers.ts" - }, - { - "label": "THEME_KEYS", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/helpers.ts", - "source_location": "L75", - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_helpers_theme_keys", - "community": 1, - "community_name": "createElement", - "norm_label": "theme_keys" - }, - { - "label": "KeybindsTab.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/KeybindsTab.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_keybindstab", - "community": 1, - "community_name": "createElement", - "norm_label": "keybindstab.ts" - }, - { - "label": "NotificationsTab.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/NotificationsTab.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_notificationstab", - "community": 1, - "community_name": "createElement", - "norm_label": "notificationstab.ts" - }, - { - "label": "TextImagesTab.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/TextImagesTab.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_textimagestab", - "community": 1, - "community_name": "createElement", - "norm_label": "textimagestab.ts" - }, - { - "label": "VoiceAudioTab.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/settings/VoiceAudioTab.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_voiceaudiotab", - "community": 1, - "community_name": "createElement", - "norm_label": "voiceaudiotab.ts" - }, - { - "label": "SettingsOverlay.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/SettingsOverlay.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_settingsoverlay", - "community": 1, - "community_name": "createElement", - "norm_label": "settingsoverlay.ts" - }, - { - "label": "TAB_ICONS", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/SettingsOverlay.ts", - "source_location": "L65", - "_origin": "ast", - "id": "client_tauri_client_src_components_settingsoverlay_tab_icons", - "community": 1, - "community_name": "createElement", - "norm_label": "tab_icons" - }, - { - "label": "a11y.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/a11y.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_lib_a11y", - "community": 1, - "community_name": "createElement", - "norm_label": "a11y.ts" - }, - { - "label": "dom.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/dom.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_lib_dom", - "community": 1, - "community_name": "createElement", - "norm_label": "dom.ts" - }, - { - "label": "icons.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/icons.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_lib_icons", - "community": 1, - "community_name": "createElement", - "norm_label": "icons.ts" - }, - { - "label": "ICON_PATHS", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/icons.ts", - "source_location": "L76", - "_origin": "ast", - "id": "client_tauri_client_src_lib_icons_icon_paths", - "community": 1, - "community_name": "createElement", - "norm_label": "icon_paths" - }, - { - "label": "reapplyAudioProcessing", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1792", - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_reapplyaudioprocessing", - "community": 1, - "community_name": "createElement", - "norm_label": "reapplyaudioprocessing" - }, - { - "label": "setInputVolume", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1789", - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_setinputvolume", - "community": 1, - "community_name": "createElement", - "norm_label": "setinputvolume" - }, - { - "label": "setOutputVolume", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1790", - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_setoutputvolume", - "community": 1, - "community_name": "createElement", - "norm_label": "setoutputvolume" - }, - { - "label": "setVoiceSensitivity", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1791", - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_setvoicesensitivity", - "community": 1, - "community_name": "createElement", - "norm_label": "setvoicesensitivity" - }, - { - "label": "switchInputDevice", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1785", - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_switchinputdevice", - "community": 1, - "community_name": "createElement", - "norm_label": "switchinputdevice" - }, - { - "label": "switchOutputDevice", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/livekitSession.ts", - "source_location": "L1786", - "_origin": "ast", - "id": "client_tauri_client_src_lib_livekitsession_switchoutputdevice", - "community": 1, - "community_name": "createElement", - "norm_label": "switchoutputdevice" - }, - { - "label": "modalFactory.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/modalFactory.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_lib_modalfactory", - "community": 1, - "community_name": "createElement", - "norm_label": "modalfactory.ts" - }, - { - "label": "safe-render.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/safe-render.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_lib_safe_render", - "community": 1, - "community_name": "createElement", - "norm_label": "safe-render.ts" - }, - { - "label": "log", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/safe-render.ts", - "source_location": "L5", - "_origin": "ast", - "id": "client_tauri_client_src_lib_safe_render_log", - "community": 1, - "community_name": "createElement", - "norm_label": "log" - }, - { - "label": "LoginForm.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/LoginForm.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_loginform", - "community": 1, - "community_name": "createElement", - "norm_label": "loginform.ts" - }, - { - "label": "ServerPanel.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/ServerPanel.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_serverpanel", - "community": 1, - "community_name": "createElement", - "norm_label": "serverpanel.ts" - }, - { - "label": "ICON_COLORS", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/connect-page/ServerPanel.ts", - "source_location": "L21", - "_origin": "ast", - "id": "client_tauri_client_src_pages_connect_page_serverpanel_icon_colors", - "community": 1, - "community_name": "createElement", - "norm_label": "icon_colors" - }, - { - "label": "ChatHeader.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/ChatHeader.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_chatheader", - "community": 1, - "community_name": "createElement", - "norm_label": "chatheader.ts" - }, - { - "label": "MemberPickerModal.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/MemberPickerModal.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_memberpickermodal", - "community": 1, - "community_name": "createElement", - "norm_label": "memberpickermodal.ts" - }, - { - "label": "SidebarDmSection.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/pages/main-page/SidebarDmSection.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_pages_main_page_sidebardmsection", - "community": 1, - "community_name": "createElement", - "norm_label": "sidebardmsection.ts" - }, - { - "label": "UNCATEGORIZED_VOICE_CATEGORY", - "file_type": "code", - "source_file": "Client/tauri-client/src/stores/channels.store.ts", - "source_location": "L290", - "_origin": "ast", - "id": "client_tauri_client_src_stores_channels_store_uncategorized_voice_category", - "community": 1, - "community_name": "createElement", - "norm_label": "uncategorized_voice_category" - }, - { - "label": "a11y.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/a11y.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_a11y_test", - "community": 1, - "community_name": "createElement", - "norm_label": "a11y.test.ts" - }, - { - "label": "accessibility-tab.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/accessibility-tab.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_accessibility_tab_test", - "community": 1, - "community_name": "createElement", - "norm_label": "accessibility-tab.test.ts" - }, - { - "label": "{ mockSyncOsMotionListener }", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/accessibility-tab.test.ts", - "source_location": "L8", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_accessibility_tab_test_mocksyncosmotionlistener", - "community": 1, - "community_name": "createElement", - "norm_label": "{ mocksyncosmotionlistener }" - }, - { - "label": "account-tab-profile.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/account-tab-profile.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_account_tab_profile_test", - "community": 1, - "community_name": "createElement", - "norm_label": "account-tab-profile.test.ts" - }, - { - "label": "advanced-tab.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/advanced-tab.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_advanced_tab_test", - "community": 1, - "community_name": "createElement", - "norm_label": "advanced-tab.test.ts" - }, - { - "label": "{\n mockReadDir,\n mockRemove,\n mockRelaunch,\n mockClearPendingPersistedLogs,\n mockClearAttachmentCaches,\n mockClearEmbedCaches,\n mockClearMediaCaches,\n deleteDbState,\n mockIsEnabled,\n mockEnable,\n mockDisable,\n}", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/advanced-tab.test.ts", - "source_location": "L3", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_advanced_tab_test_mockreaddir_mockremove_mockrelaunch_mockclearpendingpersistedlogs_mockclearattachmentcaches_mockclearembedcaches_mockclearmediacaches_deletedbstate_mockisenabled_mockenable_mockdisable", - "community": 1, - "community_name": "createElement", - "norm_label": "{\n mockreaddir,\n mockremove,\n mockrelaunch,\n mockclearpendingpersistedlogs,\n mockclearattachmentcaches,\n mockclearembedcaches,\n mockclearmediacaches,\n deletedbstate,\n mockisenabled,\n mockenable,\n mockdisable,\n}" - }, - { - "label": "appearance-tab.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/appearance-tab.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_appearance_tab_test", - "community": 1, - "community_name": "createElement", - "norm_label": "appearance-tab.test.ts" - }, - { - "label": "{ mockGetActiveThemeName, mockLoadCustomTheme, mockRestoreTheme, mockApplyThemeByName }", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/appearance-tab.test.ts", - "source_location": "L4", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_appearance_tab_test_mockgetactivethemename_mockloadcustomtheme_mockrestoretheme_mockapplythemebyname", - "community": 1, - "community_name": "createElement", - "norm_label": "{ mockgetactivethemename, mockloadcustomtheme, mockrestoretheme, mockapplythemebyname }" - }, - { - "label": "cert-first-use-modal.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/cert-first-use-modal.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_cert_first_use_modal_test", - "community": 1, - "community_name": "createElement", - "norm_label": "cert-first-use-modal.test.ts" - }, - { - "label": "chat-header.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/chat-header.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_chat_header_test", - "community": 1, - "community_name": "createElement", - "norm_label": "chat-header.test.ts" - }, - { - "label": "QuickSwitchOverlay.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/components/QuickSwitchOverlay.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_components_quickswitchoverlay_test", - "community": 1, - "community_name": "createElement", - "norm_label": "quickswitchoverlay.test.ts" - }, - { - "label": "connected-overlay.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/connected-overlay.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_connected_overlay_test", - "community": 1, - "community_name": "createElement", - "norm_label": "connected-overlay.test.ts" - }, - { - "label": "create-channel-modal.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/create-channel-modal.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_create_channel_modal_test", - "community": 1, - "community_name": "createElement", - "norm_label": "create-channel-modal.test.ts" - }, - { - "label": "delete-channel-modal.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/delete-channel-modal.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_delete_channel_modal_test", - "community": 1, - "community_name": "createElement", - "norm_label": "delete-channel-modal.test.ts" - }, - { - "label": "dom.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/dom.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_dom_test", - "community": 1, - "community_name": "createElement", - "norm_label": "dom.test.ts" - }, - { - "label": "edit-channel-modal.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/edit-channel-modal.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_edit_channel_modal_test", - "community": 1, - "community_name": "createElement", - "norm_label": "edit-channel-modal.test.ts" - }, - { - "label": "icons.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/icons.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_icons_test", - "community": 1, - "community_name": "createElement", - "norm_label": "icons.test.ts" - }, - { - "label": "ALL_ICON_NAMES", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/icons.test.ts", - "source_location": "L6", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_icons_test_all_icon_names", - "community": 1, - "community_name": "createElement", - "norm_label": "all_icon_names" - }, - { - "label": "identity-mismatch-modal.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/identity-mismatch-modal.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_identity_mismatch_modal_test", - "community": 1, - "community_name": "createElement", - "norm_label": "identity-mismatch-modal.test.ts" - }, - { - "label": "invite-manager.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/invite-manager.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_invite_manager_test", - "community": 1, - "community_name": "createElement", - "norm_label": "invite-manager.test.ts" - }, - { - "label": "keybinds-tab.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/keybinds-tab.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_keybinds_tab_test", - "community": 1, - "community_name": "createElement", - "norm_label": "keybinds-tab.test.ts" - }, - { - "label": "mockCaptureKeyPress", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/keybinds-tab.test.ts", - "source_location": "L3", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_keybinds_tab_test_mockcapturekeypress", - "community": 1, - "community_name": "createElement", - "norm_label": "mockcapturekeypress" - }, - { - "label": "mockUpdatePttKey", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/keybinds-tab.test.ts", - "source_location": "L4", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_keybinds_tab_test_mockupdatepttkey", - "community": 1, - "community_name": "createElement", - "norm_label": "mockupdatepttkey" - }, - { - "label": "mockVkName", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/keybinds-tab.test.ts", - "source_location": "L5", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_keybinds_tab_test_mockvkname", - "community": 1, - "community_name": "createElement", - "norm_label": "mockvkname" - }, - { - "label": "modal-factory.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/modal-factory.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_modal_factory_test", - "community": 1, - "community_name": "createElement", - "norm_label": "modal-factory.test.ts" - }, - { - "label": "pinned-messages.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/pinned-messages.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_pinned_messages_test", - "community": 1, - "community_name": "createElement", - "norm_label": "pinned-messages.test.ts" - }, - { - "label": "samplePins", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/pinned-messages.test.ts", - "source_location": "L5", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_pinned_messages_test_samplepins", - "community": 1, - "community_name": "createElement", - "norm_label": "samplepins" - }, - { - "label": "safe-render.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/safe-render.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_safe_render_test", - "community": 1, - "community_name": "createElement", - "norm_label": "safe-render.test.ts" - }, - { - "label": "settings-overlay.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/settings-overlay.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_settings_overlay_test", - "community": 1, - "community_name": "createElement", - "norm_label": "settings-overlay.test.ts" - }, - { - "label": "mockAuthState", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/settings-overlay.test.ts", - "source_location": "L42", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_settings_overlay_test_mockauthstate", - "community": 1, - "community_name": "createElement", - "norm_label": "mockauthstate" - }, - { - "label": "mockSetTheme", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/settings-overlay.test.ts", - "source_location": "L19", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_settings_overlay_test_mocksettheme", - "community": 1, - "community_name": "createElement", - "norm_label": "mocksettheme" - }, - { - "label": "text-images-tab.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/text-images-tab.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_text_images_tab_test", - "community": 1, - "community_name": "createElement", - "norm_label": "text-images-tab.test.ts" - }, - { - "label": "totp-settings.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/totp-settings.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_totp_settings_test", - "community": 1, - "community_name": "createElement", - "norm_label": "totp-settings.test.ts" - }, - { - "label": "mockSetTheme", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/totp-settings.test.ts", - "source_location": "L21", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_totp_settings_test_mocksettheme", - "community": 1, - "community_name": "createElement", - "norm_label": "mocksettheme" - }, - { - "label": "NOTE: a \"Hardware Acceleration\" toggle used to sit here. Nothing read the", - "file_type": "rationale", - "source_file": "Client/tauri-client/src/components/settings/AdvancedTab.ts", - "source_location": "L25", - "_origin": "ast", - "id": "client_tauri_client_src_components_settings_advancedtab_rationale_25", - "community": 1, - "community_name": "createElement", - "norm_label": "note: a \"hardware acceleration\" toggle used to sit here. nothing read the" - }, - { - "label": "go.opentelemetry.io/otel/attribute.KeyValue", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_go_opentelemetry_io_otel_attribute_keyvalue", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "go.opentelemetry.io/otel/attribute.keyvalue" - }, - { - "label": "go.opentelemetry.io/otel/metric.Float64Gauge", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_go_opentelemetry_io_otel_metric_float64gauge", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "go.opentelemetry.io/otel/metric.float64gauge" - }, - { - "label": "go.opentelemetry.io/otel/metric.Float64Histogram", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_go_opentelemetry_io_otel_metric_float64histogram", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "go.opentelemetry.io/otel/metric.float64histogram" - }, - { - "label": "go.opentelemetry.io/otel/metric.Int64Counter", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_go_opentelemetry_io_otel_metric_int64counter", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "go.opentelemetry.io/otel/metric.int64counter" - }, - { - "label": "go.opentelemetry.io/otel/metric.Meter", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_go_opentelemetry_io_otel_metric_meter", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "go.opentelemetry.io/otel/metric.meter" - }, - { - "label": "go.opentelemetry.io/otel/trace.Span", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_go_opentelemetry_io_otel_trace_span", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "go.opentelemetry.io/otel/trace.span" - }, - { - "label": "go.opentelemetry.io/otel/trace.Tracer", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_go_opentelemetry_io_otel_trace_tracer", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "go.opentelemetry.io/otel/trace.tracer" - }, - { - "label": "Invite", - "file_type": "code", - "source_file": "Server/db/models.go", - "source_location": "L87", - "_origin": "ast", - "id": "server_db_models_go_db_invite", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "invite" - }, - { - "label": "block.go", - "file_type": "code", - "source_file": "Server/service/block.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_service_block", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "block.go" - }, - { - "label": "Store", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "server_service_block_go_store", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "store" - }, - { - "label": "NewBlockService()", - "file_type": "code", - "source_file": "Server/service/block.go", - "source_location": "L18", - "_origin": "ast", - "id": "server_service_block_newblockservice", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "newblockservice()" - }, - { - "label": "dm.go", - "file_type": "code", - "source_file": "Server/service/dm.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_service_dm", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "dm.go" - }, - { - "label": "DMService", - "file_type": "code", - "source_file": "Server/service/dm.go", - "source_location": "L16", - "_origin": "ast", - "id": "server_service_dm_go_service_dmservice", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "dmservice" - }, - { - "label": "Store", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "server_service_dm_go_store", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "store" - }, - { - "label": "invite.go", - "file_type": "code", - "source_file": "Server/service/invite.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_service_invite", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "invite.go" - }, - { - "label": "Store", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "server_service_invite_go_store", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "store" - }, - { - "label": "MaxInviteExpiryHours()", - "file_type": "code", - "source_file": "Server/service/invite.go", - "source_location": "L26", - "_origin": "ast", - "id": "server_service_invite_maxinviteexpiryhours", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "maxinviteexpiryhours()" - }, - { - "label": "NewInviteService()", - "file_type": "code", - "source_file": "Server/service/invite.go", - "source_location": "L18", - "_origin": "ast", - "id": "server_service_invite_newinviteservice", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "newinviteservice()" - }, - { - "label": "metrics.go", - "file_type": "code", - "source_file": "Server/telemetry/metrics.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_telemetry_metrics", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "metrics.go" - }, - { - "label": "NewAppMetrics()", - "file_type": "code", - "source_file": "Server/telemetry/metrics.go", - "source_location": "L52", - "_origin": "ast", - "id": "server_telemetry_metrics_newappmetrics", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "newappmetrics()" - }, - { - "label": "resetAppMetricsForInit()", - "file_type": "code", - "source_file": "Server/telemetry/metrics.go", - "source_location": "L85", - "_origin": "ast", - "id": "server_telemetry_metrics_resetappmetricsforinit", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "resetappmetricsforinit()" - }, - { - "label": "telemetry/middleware.go", - "file_type": "code", - "source_file": "Server/telemetry/middleware.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_telemetry_middleware", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "telemetry/middleware.go" - }, - { - "label": "HTTPMiddleware()", - "file_type": "code", - "source_file": "Server/telemetry/middleware.go", - "source_location": "L13", - "_origin": "ast", - "id": "server_telemetry_middleware_httpmiddleware", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "httpmiddleware()" - }, - { - "label": "PrometheusHandler()", - "file_type": "code", - "source_file": "Server/telemetry/middleware.go", - "source_location": "L22", - "_origin": "ast", - "id": "server_telemetry_middleware_prometheushandler", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "prometheushandler()" - }, - { - "label": "noop_test.go", - "file_type": "code", - "source_file": "Server/telemetry/noop_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_telemetry_noop_test", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "noop_test.go" - }, - { - "label": "TestAttrConstructors()", - "file_type": "code", - "source_file": "Server/telemetry/noop_test.go", - "source_location": "L70", - "_origin": "ast", - "id": "server_telemetry_noop_test_testattrconstructors", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "testattrconstructors()" - }, - { - "label": "TestNewAppMetrics_InstrumentsAreUsable()", - "file_type": "code", - "source_file": "Server/telemetry/noop_test.go", - "source_location": "L122", - "_origin": "ast", - "id": "server_telemetry_noop_test_testnewappmetrics_instrumentsareusable", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "testnewappmetrics_instrumentsareusable()" - }, - { - "label": "TestNoopProvider_HTTPMiddlewareIsPassThrough()", - "file_type": "code", - "source_file": "Server/telemetry/noop_test.go", - "source_location": "L103", - "_origin": "ast", - "id": "server_telemetry_noop_test_testnoopprovider_httpmiddlewareispassthrough", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "testnoopprovider_httpmiddlewareispassthrough()" - }, - { - "label": "TestNoopProvider_MeterInstrumentsAreInert()", - "file_type": "code", - "source_file": "Server/telemetry/noop_test.go", - "source_location": "L44", - "_origin": "ast", - "id": "server_telemetry_noop_test_testnoopprovider_meterinstrumentsareinert", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "testnoopprovider_meterinstrumentsareinert()" - }, - { - "label": "TestNoopProvider_TracerAndSpanAreInert()", - "file_type": "code", - "source_file": "Server/telemetry/noop_test.go", - "source_location": "L19", - "_origin": "ast", - "id": "server_telemetry_noop_test_testnoopprovider_tracerandspanareinert", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "testnoopprovider_tracerandspanareinert()" - }, - { - "label": "TestTimeSince()", - "file_type": "code", - "source_file": "Server/telemetry/noop_test.go", - "source_location": "L93", - "_origin": "ast", - "id": "server_telemetry_noop_test_testtimesince", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "testtimesince()" - }, - { - "label": "telemetry.go", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_telemetry_telemetry", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "telemetry.go" - }, - { - "label": "telemetry_default.go", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_default.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_telemetry_telemetry_default", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "telemetry_default.go" - }, - { - "label": "Init()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_default.go", - "source_location": "L18", - "_origin": "ast", - "id": "server_telemetry_telemetry_default_init", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "init()" - }, - { - "label": "TraceIDFromContext()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_default.go", - "source_location": "L26", - "_origin": "ast", - "id": "server_telemetry_telemetry_default_traceidfromcontext", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "traceidfromcontext()" - }, - { - "label": "Float64()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L62", - "_origin": "ast", - "id": "server_telemetry_telemetry_float64", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "float64()" - }, - { - "label": "Global()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L108", - "_origin": "ast", - "id": "server_telemetry_telemetry_global", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "global()" - }, - { - "label": "GlobalMeter()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L118", - "_origin": "ast", - "id": "server_telemetry_telemetry_globalmeter", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "globalmeter()" - }, - { - "label": "GlobalTracer()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L115", - "_origin": "ast", - "id": "server_telemetry_telemetry_globaltracer", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "globaltracer()" - }, - { - "label": "init()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L170", - "_origin": "ast", - "id": "server_telemetry_telemetry_init", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "init()" - }, - { - "label": "Int64()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L59", - "_origin": "ast", - "id": "server_telemetry_telemetry_int64", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "int64()" - }, - { - "label": "telemetry_otel.go", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_telemetry_telemetry_otel", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "telemetry_otel.go" - }, - { - "label": "convertAttrs()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L266", - "_origin": "ast", - "id": "server_telemetry_telemetry_otel_convertattrs", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "convertattrs()" - }, - { - "label": "Init()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L59", - "_origin": "ast", - "id": "server_telemetry_telemetry_otel_init", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "init()" - }, - { - "label": "telemetry_otel_test.go", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_telemetry_telemetry_otel_test", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "telemetry_otel_test.go" - }, - { - "label": "resetGlobalForTest()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel_test.go", - "source_location": "L150", - "_origin": "ast", - "id": "server_telemetry_telemetry_otel_test_resetglobalfortest", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "resetglobalfortest()" - }, - { - "label": "TestOtelAppMetricsRebindsAfterInit()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel_test.go", - "source_location": "L190", - "_origin": "ast", - "id": "server_telemetry_telemetry_otel_test_testotelappmetricsrebindsafterinit", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "testotelappmetricsrebindsafterinit()" - }, - { - "label": "TestOtelConvertAttrsHandlesUnsignedInts()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel_test.go", - "source_location": "L167", - "_origin": "ast", - "id": "server_telemetry_telemetry_otel_test_testotelconvertattrshandlesunsignedints", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "testotelconvertattrshandlesunsignedints()" - }, - { - "label": "TestOtelConvertAttrsUint64OverflowFallsBackToString()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel_test.go", - "source_location": "L156", - "_origin": "ast", - "id": "server_telemetry_telemetry_otel_test_testotelconvertattrsuint64overflowfallsbacktostring", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "testotelconvertattrsuint64overflowfallsbacktostring()" - }, - { - "label": "TestOtelHistogramRecordsSeconds()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel_test.go", - "source_location": "L112", - "_origin": "ast", - "id": "server_telemetry_telemetry_otel_test_testotelhistogramrecordsseconds", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "testotelhistogramrecordsseconds()" - }, - { - "label": "TestOtelInitDisabledReturnsNoopProvider()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel_test.go", - "source_location": "L76", - "_origin": "ast", - "id": "server_telemetry_telemetry_otel_test_testotelinitdisabledreturnsnoopprovider", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "testotelinitdisabledreturnsnoopprovider()" - }, - { - "label": "TestOtelInitNoneReturnsNoopProvider()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel_test.go", - "source_location": "L61", - "_origin": "ast", - "id": "server_telemetry_telemetry_otel_test_testotelinitnonereturnsnoopprovider", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "testotelinitnonereturnsnoopprovider()" - }, - { - "label": "TestOtelInitPrometheusExporter()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel_test.go", - "source_location": "L22", - "_origin": "ast", - "id": "server_telemetry_telemetry_otel_test_testotelinitprometheusexporter", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "testotelinitprometheusexporter()" - }, - { - "label": "TestOtelShutdownIdempotent()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel_test.go", - "source_location": "L128", - "_origin": "ast", - "id": "server_telemetry_telemetry_otel_test_testotelshutdownidempotent", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "testotelshutdownidempotent()" - }, - { - "label": "TestOtelTracerRecordsSpan()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel_test.go", - "source_location": "L88", - "_origin": "ast", - "id": "server_telemetry_telemetry_otel_test_testoteltracerrecordsspan", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "testoteltracerrecordsspan()" - }, - { - "label": "TraceIDFromContext()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L184", - "_origin": "ast", - "id": "server_telemetry_telemetry_otel_traceidfromcontext", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "traceidfromcontext()" - }, - { - "label": "SetGlobal()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L97", - "_origin": "ast", - "id": "server_telemetry_telemetry_setglobal", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "setglobal()" - }, - { - "label": "String()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L56", - "_origin": "ast", - "id": "server_telemetry_telemetry_string", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "string()" - }, - { - "label": "TimeSince()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L161", - "_origin": "ast", - "id": "server_telemetry_telemetry_timesince", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "timesince()" - }, - { - "label": "BlockService", - "file_type": "code", - "source_file": "Server/service/block.go", - "source_location": "L13", - "_origin": "ast", - "id": "service_blockservice", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "blockservice" - }, - { - "label": ".BlockUser()", - "file_type": "code", - "source_file": "Server/service/block.go", - "source_location": "L24", - "_origin": "ast", - "id": "service_blockservice_blockuser", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".blockuser()" - }, - { - "label": ".ListBlocked()", - "file_type": "code", - "source_file": "Server/service/block.go", - "source_location": "L69", - "_origin": "ast", - "id": "service_blockservice_listblocked", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".listblocked()" - }, - { - "label": ".UnblockUser()", - "file_type": "code", - "source_file": "Server/service/block.go", - "source_location": "L57", - "_origin": "ast", - "id": "service_blockservice_unblockuser", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".unblockuser()" - }, - { - "label": "CloseDMResult", - "file_type": "code", - "source_file": "Server/service/dm.go", - "source_location": "L100", - "_origin": "ast", - "id": "service_closedmresult", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "closedmresult" - }, - { - "label": "CreateDMResult", - "file_type": "code", - "source_file": "Server/service/dm.go", - "source_location": "L26", - "_origin": "ast", - "id": "service_createdmresult", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "createdmresult" - }, - { - "label": "CreateGroupDMResult", - "file_type": "code", - "source_file": "Server/service/dm.go", - "source_location": "L179", - "_origin": "ast", - "id": "service_creategroupdmresult", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "creategroupdmresult" - }, - { - "label": ".CloseDM()", - "file_type": "code", - "source_file": "Server/service/dm.go", - "source_location": "L121", - "_origin": "ast", - "id": "service_dmservice_closedm", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".closedm()" - }, - { - "label": ".CreateDM()", - "file_type": "code", - "source_file": "Server/service/dm.go", - "source_location": "L34", - "_origin": "ast", - "id": "service_dmservice_createdm", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".createdm()" - }, - { - "label": ".CreateGroupDM()", - "file_type": "code", - "source_file": "Server/service/dm.go", - "source_location": "L200", - "_origin": "ast", - "id": "service_dmservice_creategroupdm", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".creategroupdm()" - }, - { - "label": ".ListDMs()", - "file_type": "code", - "source_file": "Server/service/dm.go", - "source_location": "L90", - "_origin": "ast", - "id": "service_dmservice_listdms", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".listdms()" - }, - { - "label": ".RenameGroupDM()", - "file_type": "code", - "source_file": "Server/service/dm.go", - "source_location": "L305", - "_origin": "ast", - "id": "service_dmservice_renamegroupdm", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".renamegroupdm()" - }, - { - "label": ".RingTargets()", - "file_type": "code", - "source_file": "Server/service/dm.go", - "source_location": "L374", - "_origin": "ast", - "id": "service_dmservice_ringtargets", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".ringtargets()" - }, - { - "label": "InviteService", - "file_type": "code", - "source_file": "Server/service/invite.go", - "source_location": "L13", - "_origin": "ast", - "id": "service_inviteservice", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "inviteservice" - }, - { - "label": ".CreateInvite()", - "file_type": "code", - "source_file": "Server/service/invite.go", - "source_location": "L29", - "_origin": "ast", - "id": "service_inviteservice_createinvite", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".createinvite()" - }, - { - "label": ".ListInvites()", - "file_type": "code", - "source_file": "Server/service/invite.go", - "source_location": "L64", - "_origin": "ast", - "id": "service_inviteservice_listinvites", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".listinvites()" - }, - { - "label": ".RevokeInvite()", - "file_type": "code", - "source_file": "Server/service/invite.go", - "source_location": "L73", - "_origin": "ast", - "id": "service_inviteservice_revokeinvite", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".revokeinvite()" - }, - { - "label": "AppMetrics", - "file_type": "code", - "source_file": "Server/telemetry/metrics.go", - "source_location": "L25", - "_origin": "ast", - "id": "telemetry_appmetrics", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "appmetrics" - }, - { - "label": "Attr", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L50", - "_origin": "ast", - "id": "telemetry_attr", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "attr" - }, - { - "label": "Counter", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L35", - "_origin": "ast", - "id": "telemetry_counter", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "counter" - }, - { - "label": "Gauge", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L45", - "_origin": "ast", - "id": "telemetry_gauge", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "gauge" - }, - { - "label": "Histogram", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L40", - "_origin": "ast", - "id": "telemetry_histogram", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "histogram" - }, - { - "label": "Meter", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L77", - "_origin": "ast", - "id": "telemetry_meter", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "meter" - }, - { - "label": "noopCounter", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L147", - "_origin": "ast", - "id": "telemetry_noopcounter", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "noopcounter" - }, - { - "label": ".Add()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L149", - "_origin": "ast", - "id": "telemetry_noopcounter_add", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".add()" - }, - { - "label": "noopGauge", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L155", - "_origin": "ast", - "id": "telemetry_noopgauge", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "noopgauge" - }, - { - "label": ".Set()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L157", - "_origin": "ast", - "id": "telemetry_noopgauge_set", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".set()" - }, - { - "label": "noopHistogram", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L151", - "_origin": "ast", - "id": "telemetry_noophistogram", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "noophistogram" - }, - { - "label": ".Record()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L153", - "_origin": "ast", - "id": "telemetry_noophistogram_record", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".record()" - }, - { - "label": "noopMeter", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L141", - "_origin": "ast", - "id": "telemetry_noopmeter", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "noopmeter" - }, - { - "label": ".Counter()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L143", - "_origin": "ast", - "id": "telemetry_noopmeter_counter", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".counter()" - }, - { - "label": ".Gauge()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L145", - "_origin": "ast", - "id": "telemetry_noopmeter_gauge", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".gauge()" - }, - { - "label": ".Histogram()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L144", - "_origin": "ast", - "id": "telemetry_noopmeter_histogram", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".histogram()" - }, - { - "label": "noopProvider", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L122", - "_origin": "ast", - "id": "telemetry_noopprovider", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "noopprovider" - }, - { - "label": ".HTTPMiddleware()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L126", - "_origin": "ast", - "id": "telemetry_noopprovider_httpmiddleware", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".httpmiddleware()" - }, - { - "label": ".Meter()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L125", - "_origin": "ast", - "id": "telemetry_noopprovider_meter", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".meter()" - }, - { - "label": ".PrometheusHandler()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L127", - "_origin": "ast", - "id": "telemetry_noopprovider_prometheushandler", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".prometheushandler()" - }, - { - "label": ".Tracer()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L124", - "_origin": "ast", - "id": "telemetry_noopprovider_tracer", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".tracer()" - }, - { - "label": "noopSpan", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L135", - "_origin": "ast", - "id": "telemetry_noopspan", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "noopspan" - }, - { - "label": ".End()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L137", - "_origin": "ast", - "id": "telemetry_noopspan_end", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".end()" - }, - { - "label": ".RecordError()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L139", - "_origin": "ast", - "id": "telemetry_noopspan_recorderror", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".recorderror()" - }, - { - "label": ".SetAttributes()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L138", - "_origin": "ast", - "id": "telemetry_noopspan_setattributes", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".setattributes()" - }, - { - "label": "noopTracer", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L129", - "_origin": "ast", - "id": "telemetry_nooptracer", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "nooptracer" - }, - { - "label": ".Start()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L131", - "_origin": "ast", - "id": "telemetry_nooptracer_start", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".start()" - }, - { - "label": "otelCounter", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L243", - "_origin": "ast", - "id": "telemetry_otelcounter", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "otelcounter" - }, - { - "label": ".Add()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L245", - "_origin": "ast", - "id": "telemetry_otelcounter_add", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".add()" - }, - { - "label": "otelGauge", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L255", - "_origin": "ast", - "id": "telemetry_otelgauge", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "otelgauge" - }, - { - "label": ".Set()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L257", - "_origin": "ast", - "id": "telemetry_otelgauge_set", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".set()" - }, - { - "label": "otelHistogram", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L249", - "_origin": "ast", - "id": "telemetry_otelhistogram", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "otelhistogram" - }, - { - "label": ".Record()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L251", - "_origin": "ast", - "id": "telemetry_otelhistogram_record", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".record()" - }, - { - "label": "otelMeter", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L213", - "_origin": "ast", - "id": "telemetry_otelmeter", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "otelmeter" - }, - { - "label": ".Counter()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L215", - "_origin": "ast", - "id": "telemetry_otelmeter_counter", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".counter()" - }, - { - "label": ".Gauge()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L235", - "_origin": "ast", - "id": "telemetry_otelmeter_gauge", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".gauge()" - }, - { - "label": ".Histogram()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L223", - "_origin": "ast", - "id": "telemetry_otelmeter_histogram", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".histogram()" - }, - { - "label": ".Meter()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L165", - "_origin": "ast", - "id": "telemetry_otelprovider_meter", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".meter()" - }, - { - "label": "otelSpan", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L200", - "_origin": "ast", - "id": "telemetry_otelspan", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "otelspan" - }, - { - "label": ".End()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L202", - "_origin": "ast", - "id": "telemetry_otelspan_end", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".end()" - }, - { - "label": ".RecordError()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L204", - "_origin": "ast", - "id": "telemetry_otelspan_recorderror", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".recorderror()" - }, - { - "label": ".SetAttributes()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L203", - "_origin": "ast", - "id": "telemetry_otelspan_setattributes", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".setattributes()" - }, - { - "label": "otelTracer", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L193", - "_origin": "ast", - "id": "telemetry_oteltracer", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "oteltracer" - }, - { - "label": ".Start()", - "file_type": "code", - "source_file": "Server/telemetry/telemetry_otel.go", - "source_location": "L195", - "_origin": "ast", - "id": "telemetry_oteltracer_start", - "community": 10, - "community_name": "telemetry.go", - "norm_label": ".start()" - }, - { - "label": "Provider", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L84", - "_origin": "ast", - "id": "telemetry_provider", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "provider" - }, - { - "label": "ShutdownFunc", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L32", - "_origin": "ast", - "id": "telemetry_shutdownfunc", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "shutdownfunc" - }, - { - "label": "Span", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L65", - "_origin": "ast", - "id": "telemetry_span", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "span" - }, - { - "label": "Tracer", - "file_type": "code", - "source_file": "Server/telemetry/telemetry.go", - "source_location": "L72", - "_origin": "ast", - "id": "telemetry_tracer", - "community": 10, - "community_name": "telemetry.go", - "norm_label": "tracer" - }, - { - "label": "noise-suppression.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/noise-suppression.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_lib_noise_suppression", - "community": 100, - "community_name": "noise-suppression.ts", - "norm_label": "noise-suppression.ts" - }, - { - "label": "log", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/noise-suppression.ts", - "source_location": "L17", - "_origin": "ast", - "id": "client_tauri_client_src_lib_noise_suppression_log", - "community": 100, - "community_name": "noise-suppression.ts", - "norm_label": "log" - }, - { - "label": "smoke.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/browser/smoke.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_browser_smoke_test", - "community": 100, - "community_name": "noise-suppression.ts", - "norm_label": "smoke.test.ts" - }, - { - "label": "audio-pipeline-core.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/audio-pipeline-core.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_audio_pipeline_core_test", - "community": 100, - "community_name": "noise-suppression.ts", - "norm_label": "audio-pipeline-core.test.ts" - }, - { - "label": "{ mockLoadPref, mockSavePref }", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/audio-pipeline-core.test.ts", - "source_location": "L3", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_audio_pipeline_core_test_mockloadpref_mocksavepref", - "community": 100, - "community_name": "noise-suppression.ts", - "norm_label": "{ mockloadpref, mocksavepref }" - }, - { - "label": "AdminActions.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/AdminActions.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_adminactions", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": "adminactions.ts" - }, - { - "label": "BAN_DURATIONS", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/AdminActions.ts", - "source_location": "L43", - "_origin": "ast", - "id": "client_tauri_client_src_components_adminactions_ban_durations", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": "ban_durations" - }, - { - "label": "purge-prompt.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/purge-prompt.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_purge_prompt", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": "purge-prompt.ts" - }, - { - "label": "PURGE_DEFAULT_COUNT", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/purge-prompt.ts", - "source_location": "L14", - "_origin": "ast", - "id": "client_tauri_client_src_components_purge_prompt_purge_default_count", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": "purge_default_count" - }, - { - "label": "PURGE_MAX_COUNT", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/purge-prompt.ts", - "source_location": "L13", - "_origin": "ast", - "id": "client_tauri_client_src_components_purge_prompt_purge_max_count", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": "purge_max_count" - }, - { - "label": "PURGE_MIN_COUNT", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/purge-prompt.ts", - "source_location": "L12", - "_origin": "ast", - "id": "client_tauri_client_src_components_purge_prompt_purge_min_count", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": "purge_min_count" - }, - { - "label": "admin-actions.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/admin-actions.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_admin_actions_test", - "community": 101, - "community_name": "AdminActions.ts", - "norm_label": "admin-actions.test.ts" - }, - { - "label": "Auth Endpoints", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L64", - "_origin": "ast", - "id": "docs_api_auth_endpoints", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "auth endpoints" - }, - { - "label": "DELETE /api/v1/auth/account", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L284", - "_origin": "ast", - "id": "docs_api_delete_api_v1_auth_account", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "delete /api/v1/auth/account" - }, - { - "label": "DELETE /api/v1/users/me/totp", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L360", - "_origin": "ast", - "id": "docs_api_delete_api_v1_users_me_totp", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "delete /api/v1/users/me/totp" - }, - { - "label": "Errors", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L111", - "_origin": "ast", - "id": "docs_api_errors", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "errors" - }, - { - "label": "Errors", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L173", - "_origin": "ast", - "id": "docs_api_errors_173", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "errors" - }, - { - "label": "Errors", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L223", - "_origin": "ast", - "id": "docs_api_errors_223", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "errors" - }, - { - "label": "Errors", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L303", - "_origin": "ast", - "id": "docs_api_errors_303", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "errors" - }, - { - "label": "GET /api/v1/auth/me", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L233", - "_origin": "ast", - "id": "docs_api_get_api_v1_auth_me", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "get /api/v1/auth/me" - }, - { - "label": "POST /api/v1/auth/login", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L123", - "_origin": "ast", - "id": "docs_api_post_api_v1_auth_login", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "post /api/v1/auth/login" - }, - { - "label": "POST /api/v1/auth/logout", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L274", - "_origin": "ast", - "id": "docs_api_post_api_v1_auth_logout", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "post /api/v1/auth/logout" - }, - { - "label": "POST /api/v1/auth/register", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L66", - "_origin": "ast", - "id": "docs_api_post_api_v1_auth_register", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "post /api/v1/auth/register" - }, - { - "label": "POST /api/v1/auth/verify-totp", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L185", - "_origin": "ast", - "id": "docs_api_post_api_v1_auth_verify_totp", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "post /api/v1/auth/verify-totp" - }, - { - "label": "POST /api/v1/users/me/totp/confirm", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L340", - "_origin": "ast", - "id": "docs_api_post_api_v1_users_me_totp_confirm", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "post /api/v1/users/me/totp/confirm" - }, - { - "label": "POST /api/v1/users/me/totp/enable", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L314", - "_origin": "ast", - "id": "docs_api_post_api_v1_users_me_totp_enable", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "post /api/v1/users/me/totp/enable" - }, - { - "label": "Request", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L73", - "_origin": "ast", - "id": "docs_api_request", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "request" - }, - { - "label": "Request", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L130", - "_origin": "ast", - "id": "docs_api_request_130", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "request" - }, - { - "label": "Request", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L192", - "_origin": "ast", - "id": "docs_api_request_192", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "request" - }, - { - "label": "Request", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L291", - "_origin": "ast", - "id": "docs_api_request_291", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "request" - }, - { - "label": "Request", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L321", - "_origin": "ast", - "id": "docs_api_request_321", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "request" - }, - { - "label": "Request", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L347", - "_origin": "ast", - "id": "docs_api_request_347", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "request" - }, - { - "label": "Request", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L367", - "_origin": "ast", - "id": "docs_api_request_367", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "request" - }, - { - "label": "Response 200 OK", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L139", - "_origin": "ast", - "id": "docs_api_response_200_ok", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "response 200 ok" - }, - { - "label": "Response 200 OK", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L200", - "_origin": "ast", - "id": "docs_api_response_200_ok_200", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "response 200 ok" - }, - { - "label": "Response 200 OK", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L239", - "_origin": "ast", - "id": "docs_api_response_200_ok_239", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "response 200 ok" - }, - { - "label": "Response 200 OK", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L329", - "_origin": "ast", - "id": "docs_api_response_200_ok_329", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "response 200 ok" - }, - { - "label": "Response 201 Created", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L89", - "_origin": "ast", - "id": "docs_api_response_201_created", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "response 201 created" - }, - { - "label": "Response 204 No Content", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L280", - "_origin": "ast", - "id": "docs_api_response_204_no_content", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "response 204 no content" - }, - { - "label": "Response 204 No Content", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L299", - "_origin": "ast", - "id": "docs_api_response_204_no_content_299", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "response 204 no content" - }, - { - "label": "Response 204 No Content", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L356", - "_origin": "ast", - "id": "docs_api_response_204_no_content_356", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "response 204 no content" - }, - { - "label": "Response 204 No Content", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L375", - "_origin": "ast", - "id": "docs_api_response_204_no_content_375", - "community": 102, - "community_name": "Auth Endpoints", - "norm_label": "response 204 no content" - }, - { - "label": "testing/fstest.MapFS", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_testing_fstest_mapfs", - "community": 103, - "community_name": "openMemory", - "norm_label": "testing/fstest.mapfs" - }, - { - "label": "openMemory()", - "file_type": "code", - "source_file": "Server/db/db_test.go", - "source_location": "L20", - "_origin": "ast", - "id": "server_db_db_test_openmemory", - "community": 103, - "community_name": "openMemory", - "norm_label": "openmemory()" - }, - { - "label": "TestMigrateFSInvalidSQL()", - "file_type": "code", - "source_file": "Server/db/db_test.go", - "source_location": "L452", - "_origin": "ast", - "id": "server_db_db_test_testmigratefsinvalidsql", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigratefsinvalidsql()" - }, - { - "label": "TestMigrateFSReadFileError()", - "file_type": "code", - "source_file": "Server/db/db_test.go", - "source_location": "L443", - "_origin": "ast", - "id": "server_db_db_test_testmigratefsreadfileerror", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigratefsreadfileerror()" - }, - { - "label": "TestMigrateFSSkipsNonSQL()", - "file_type": "code", - "source_file": "Server/db/db_test.go", - "source_location": "L468", - "_origin": "ast", - "id": "server_db_db_test_testmigratefsskipsnonsql", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigratefsskipsnonsql()" - }, - { - "label": "MigrateFS()", - "file_type": "code", - "source_file": "Server/db/migrate.go", - "source_location": "L158", - "_origin": "ast", - "id": "server_db_migrate_migratefs", - "community": 103, - "community_name": "openMemory", - "norm_label": "migratefs()" - }, - { - "label": "migrate_test.go", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_db_migrate_test", - "community": 103, - "community_name": "openMemory", - "norm_label": "migrate_test.go" - }, - { - "label": "countVersions()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L59", - "_origin": "ast", - "id": "server_db_migrate_test_countversions", - "community": 103, - "community_name": "openMemory", - "norm_label": "countversions()" - }, - { - "label": "hasVersion()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L70", - "_origin": "ast", - "id": "server_db_migrate_test_hasversion", - "community": 103, - "community_name": "openMemory", - "norm_label": "hasversion()" - }, - { - "label": "simpleFS()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L102", - "_origin": "ast", - "id": "server_db_migrate_test_simplefs", - "community": 103, - "community_name": "openMemory", - "norm_label": "simplefs()" - }, - { - "label": "tableExists()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L86", - "_origin": "ast", - "id": "server_db_migrate_test_tableexists", - "community": 103, - "community_name": "openMemory", - "norm_label": "tableexists()" - }, - { - "label": "TestMigrate_022CreatesMentionSchema()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L818", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_022createsmentionschema", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_022createsmentionschema()" - }, - { - "label": "TestMigrate_022SeedsMentionEveryone()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L789", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_022seedsmentioneveryone", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_022seedsmentioneveryone()" - }, - { - "label": "TestMigrate_AllMigrationsRecorded()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L135", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_allmigrationsrecorded", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_allmigrationsrecorded()" - }, - { - "label": "TestMigrate_AppliedAtIsISO8601()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L461", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_appliedatisiso8601", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_appliedatisiso8601()" - }, - { - "label": "TestMigrate_AppliesNewMigrationsOnly()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L189", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_appliesnewmigrationsonly", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_appliesnewmigrationsonly()" - }, - { - "label": "TestMigrate_EmptyFSSucceeds()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L498", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_emptyfssucceeds", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_emptyfssucceeds()" - }, - { - "label": "TestMigrate_ErrorMessageContainsFilename()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L653", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_errormessagecontainsfilename", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_errormessagecontainsfilename()" - }, - { - "label": "TestMigrate_FreshDatabaseRunsAllMigrations()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L740", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_freshdatabaserunsallmigrations", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_freshdatabaserunsallmigrations()" - }, - { - "label": "TestMigrate_InterruptedSeedDoesNotOrphanTrackingTable()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L362", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_interruptedseeddoesnotorphantrackingtable", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_interruptedseeddoesnotorphantrackingtable()" - }, - { - "label": "TestMigrate_InvalidSQLReturnsError()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L518", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_invalidsqlreturnserror", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_invalidsqlreturnserror()" - }, - { - "label": "TestMigrate_LargeNumberOfMigrations()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L765", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_largenumberofmigrations", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_largenumberofmigrations()" - }, - { - "label": "TestMigrate_NonSQLFilesSkipped()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L564", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_nonsqlfilesskipped", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_nonsqlfilesskipped()" - }, - { - "label": "TestMigrate_OrderIsLexicographic()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L232", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_orderislexicographic", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_orderislexicographic()" - }, - { - "label": "TestMigrate_PartialRunRecordsOnlyApplied()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L544", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_partialrunrecordsonlyapplied", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_partialrunrecordsonlyapplied()" - }, - { - "label": "TestMigrate_ReadDirErrorReturnsError()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L672", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_readdirerrorreturnserror", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_readdirerrorreturnserror()" - }, - { - "label": "TestMigrate_ReadFileErrorReturnsError()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L533", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_readfileerrorreturnserror", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_readfileerrorreturnserror()" - }, - { - "label": "TestMigrate_SchemaVersionsAppliedAtRecorded()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L437", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_schemaversionsappliedatrecorded", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_schemaversionsappliedatrecorded()" - }, - { - "label": "TestMigrate_SchemaVersionsHasPrimaryKey()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L683", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_schemaversionshasprimarykey", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_schemaversionshasprimarykey()" - }, - { - "label": "TestMigrate_SchemaVersionsTableCreated()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L117", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_schemaversionstablecreated", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_schemaversionstablecreated()" - }, - { - "label": "TestMigrate_SeedDetectionUsesKnownTable()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L626", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_seeddetectionusesknowntable", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_seeddetectionusesknowntable()" - }, - { - "label": "TestMigrate_SeedDoesNotReRunMigrations()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L303", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_seeddoesnotrerunmigrations", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_seeddoesnotrerunmigrations()" - }, - { - "label": "TestMigrate_SeedExistingDatabase()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L262", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_seedexistingdatabase", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_seedexistingdatabase()" - }, - { - "label": "TestMigrate_SeedRecordsAllFilesFromFS()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L705", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_seedrecordsallfilesfromfs", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_seedrecordsallfilesfromfs()" - }, - { - "label": "TestMigrate_SkipsAlreadyApplied()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L157", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_skipsalreadyapplied", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_skipsalreadyapplied()" - }, - { - "label": "TestMigrate_WithRealMigrations()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L591", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_withrealmigrations", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_withrealmigrations()" - }, - { - "label": "TestMigrate_WithRealMigrationsIdempotent()", - "file_type": "code", - "source_file": "Server/db/migrate_test.go", - "source_location": "L612", - "_origin": "ast", - "id": "server_db_migrate_test_testmigrate_withrealmigrationsidempotent", - "community": 103, - "community_name": "openMemory", - "norm_label": "testmigrate_withrealmigrationsidempotent()" - }, - { - "label": "channel_user_override_test.go", - "file_type": "code", - "source_file": "Server/service/channel_user_override_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_service_channel_user_override_test", - "community": 104, - "community_name": "PermissionService", - "norm_label": "channel_user_override_test.go" - }, - { - "label": "newOverrideFixture()", - "file_type": "code", - "source_file": "Server/service/channel_user_override_test.go", - "source_location": "L19", - "_origin": "ast", - "id": "server_service_channel_user_override_test_newoverridefixture", - "community": 104, - "community_name": "PermissionService", - "norm_label": "newoverridefixture()" - }, - { - "label": "seedChannelUserOverride()", - "file_type": "code", - "source_file": "Server/service/channel_user_override_test.go", - "source_location": "L12", - "_origin": "ast", - "id": "server_service_channel_user_override_test_seedchanneluseroverride", - "community": 104, - "community_name": "PermissionService", - "norm_label": "seedchanneluseroverride()" - }, - { - "label": "TestListVisibleChannels_PerUserOverrideSplitsRoleMates()", - "file_type": "code", - "source_file": "Server/service/channel_user_override_test.go", - "source_location": "L56", - "_origin": "ast", - "id": "server_service_channel_user_override_test_testlistvisiblechannels_peruseroverridesplitsrolemates", - "community": 104, - "community_name": "PermissionService", - "norm_label": "testlistvisiblechannels_peruseroverridesplitsrolemates()" - }, - { - "label": "TestPermissionService_AppliesUserOverrideLayer()", - "file_type": "code", - "source_file": "Server/service/channel_user_override_test.go", - "source_location": "L76", - "_origin": "ast", - "id": "server_service_channel_user_override_test_testpermissionservice_appliesuseroverridelayer", - "community": 104, - "community_name": "PermissionService", - "norm_label": "testpermissionservice_appliesuseroverridelayer()" - }, - { - "label": "TestPermissionService_InvalidateUserPicksUpNewOverride()", - "file_type": "code", - "source_file": "Server/service/channel_user_override_test.go", - "source_location": "L99", - "_origin": "ast", - "id": "server_service_channel_user_override_test_testpermissionservice_invalidateuserpicksupnewoverride", - "community": 104, - "community_name": "PermissionService", - "norm_label": "testpermissionservice_invalidateuserpicksupnewoverride()" - }, - { - "label": "visibleIDs()", - "file_type": "code", - "source_file": "Server/service/channel_user_override_test.go", - "source_location": "L41", - "_origin": "ast", - "id": "server_service_channel_user_override_test_visibleids", - "community": 104, - "community_name": "PermissionService", - "norm_label": "visibleids()" - }, - { - "label": "Store", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "server_service_emoji_go_store", - "community": 104, - "community_name": "PermissionService", - "norm_label": "store" - }, - { - "label": "NewEmojiService()", - "file_type": "code", - "source_file": "Server/service/emoji.go", - "source_location": "L29", - "_origin": "ast", - "id": "server_service_emoji_newemojiservice", - "community": 104, - "community_name": "PermissionService", - "norm_label": "newemojiservice()" - }, - { - "label": "TestEmojiRequireManage_NilPermServiceIsForbidden()", - "file_type": "code", - "source_file": "Server/service/emoji_test.go", - "source_location": "L147", - "_origin": "ast", - "id": "server_service_emoji_test_testemojirequiremanage_nilpermserviceisforbidden", - "community": 104, - "community_name": "PermissionService", - "norm_label": "testemojirequiremanage_nilpermserviceisforbidden()" - }, - { - "label": "permission.go", - "file_type": "code", - "source_file": "Server/service/permission.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_service_permission", - "community": 104, - "community_name": "PermissionService", - "norm_label": "permission.go" - }, - { - "label": "PermissionService", - "file_type": "code", - "source_file": "Server/service/permission.go", - "source_location": "L30", - "_origin": "ast", - "id": "server_service_permission_go_service_permissionservice", - "community": 104, - "community_name": "PermissionService", - "norm_label": "permissionservice" - }, - { - "label": "Store", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "server_service_permission_go_store", - "community": 104, - "community_name": "PermissionService", - "norm_label": "store" - }, - { - "label": "cachedPerms", - "file_type": "code", - "source_file": "Server/service/permission.go", - "source_location": "L16", - "_origin": "ast", - "id": "service_cachedperms", - "community": 104, - "community_name": "PermissionService", - "norm_label": "cachedperms" - }, - { - "label": ".CacheStats()", - "file_type": "code", - "source_file": "Server/service/permission.go", - "source_location": "L144", - "_origin": "ast", - "id": "service_permissionservice_cachestats", - "community": 104, - "community_name": "PermissionService", - "norm_label": ".cachestats()" - }, - { - "label": ".InvalidateAll()", - "file_type": "code", - "source_file": "Server/service/permission.go", - "source_location": "L126", - "_origin": "ast", - "id": "service_permissionservice_invalidateall", - "community": 104, - "community_name": "PermissionService", - "norm_label": ".invalidateall()" - }, - { - "label": ".InvalidateChannel()", - "file_type": "code", - "source_file": "Server/service/permission.go", - "source_location": "L118", - "_origin": "ast", - "id": "service_permissionservice_invalidatechannel", - "community": 104, - "community_name": "PermissionService", - "norm_label": ".invalidatechannel()" - }, - { - "label": ".InvalidateUser()", - "file_type": "code", - "source_file": "Server/service/permission.go", - "source_location": "L108", - "_origin": "ast", - "id": "service_permissionservice_invalidateuser", - "community": 104, - "community_name": "PermissionService", - "norm_label": ".invalidateuser()" - }, - { - "label": "bytesProvider", - "file_type": "code", - "source_file": "Server/config/save.go", - "source_location": "L209", - "_origin": "ast", - "id": "config_bytesprovider", - "community": 105, - "community_name": "Save", - "norm_label": "bytesprovider" - }, - { - "label": ".Read()", - "file_type": "code", - "source_file": "Server/config/save.go", - "source_location": "L213", - "_origin": "ast", - "id": "config_bytesprovider_read", - "community": 105, - "community_name": "Save", - "norm_label": ".read()" - }, - { - "label": ".ReadBytes()", - "file_type": "code", - "source_file": "Server/config/save.go", - "source_location": "L211", - "_origin": "ast", - "id": "config_bytesprovider_readbytes", - "community": 105, - "community_name": "Save", - "norm_label": ".readbytes()" - }, - { - "label": "go.yaml.in/yaml/v3.Node", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_go_yaml_in_yaml_v3_node", - "community": 105, - "community_name": "Save", - "norm_label": "go.yaml.in/yaml/v3.node" - }, - { - "label": "validateYAML()", - "file_type": "code", - "source_file": "Server/config/config.go", - "source_location": "L671", - "_origin": "ast", - "id": "server_config_config_validateyaml", - "community": 105, - "community_name": "Save", - "norm_label": "validateyaml()" - }, - { - "label": "save.go", - "file_type": "code", - "source_file": "Server/config/save.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_config_save", - "community": 105, - "community_name": "Save", - "norm_label": "save.go" - }, - { - "label": "applyPatch()", - "file_type": "code", - "source_file": "Server/config/save.go", - "source_location": "L97", - "_origin": "ast", - "id": "server_config_save_applypatch", - "community": 105, - "community_name": "Save", - "norm_label": "applypatch()" - }, - { - "label": "atomicWrite()", - "file_type": "code", - "source_file": "Server/config/save.go", - "source_location": "L236", - "_origin": "ast", - "id": "server_config_save_atomicwrite", - "community": 105, - "community_name": "Save", - "norm_label": "atomicwrite()" - }, - { - "label": "findValue()", - "file_type": "code", - "source_file": "Server/config/save.go", - "source_location": "L179", - "_origin": "ast", - "id": "server_config_save_findvalue", - "community": 105, - "community_name": "Save", - "norm_label": "findvalue()" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "Server/config/save.go", - "source_location": "L25", - "_origin": "ast", - "id": "server_config_save_go_config_patch", - "community": 105, - "community_name": "Save", - "norm_label": "patch" - }, - { - "label": "mappingRoot()", - "file_type": "code", - "source_file": "Server/config/save.go", - "source_location": "L133", - "_origin": "ast", - "id": "server_config_save_mappingroot", - "community": 105, - "community_name": "Save", - "norm_label": "mappingroot()" - }, - { - "label": "Save()", - "file_type": "code", - "source_file": "Server/config/save.go", - "source_location": "L53", - "_origin": "ast", - "id": "server_config_save_save", - "community": 105, - "community_name": "Save", - "norm_label": "save()" - }, - { - "label": "section()", - "file_type": "code", - "source_file": "Server/config/save.go", - "source_location": "L161", - "_origin": "ast", - "id": "server_config_save_section", - "community": 105, - "community_name": "Save", - "norm_label": "section()" - }, - { - "label": "setScalar()", - "file_type": "code", - "source_file": "Server/config/save.go", - "source_location": "L191", - "_origin": "ast", - "id": "server_config_save_setscalar", - "community": 105, - "community_name": "Save", - "norm_label": "setscalar()" - }, - { - "label": "save_test.go", - "file_type": "code", - "source_file": "Server/config/save_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_config_save_test", - "community": 105, - "community_name": "Save", - "norm_label": "save_test.go" - }, - { - "label": "loadNoEnv()", - "file_type": "code", - "source_file": "Server/config/save_test.go", - "source_location": "L15", - "_origin": "ast", - "id": "server_config_save_test_loadnoenv", - "community": 105, - "community_name": "Save", - "norm_label": "loadnoenv()" - }, - { - "label": "TestSaveCreatesMissingFileFromTemplate()", - "file_type": "code", - "source_file": "Server/config/save_test.go", - "source_location": "L133", - "_origin": "ast", - "id": "server_config_save_test_testsavecreatesmissingfilefromtemplate", - "community": 105, - "community_name": "Save", - "norm_label": "testsavecreatesmissingfilefromtemplate()" - }, - { - "label": "TestSaveLeavesUnparseableFileIntact()", - "file_type": "code", - "source_file": "Server/config/save_test.go", - "source_location": "L255", - "_origin": "ast", - "id": "server_config_save_test_testsaveleavesunparseablefileintact", - "community": 105, - "community_name": "Save", - "norm_label": "testsaveleavesunparseablefileintact()" - }, - { - "label": "TestSavePatchesGeneratedDefaultFile()", - "file_type": "code", - "source_file": "Server/config/save_test.go", - "source_location": "L24", - "_origin": "ast", - "id": "server_config_save_test_testsavepatchesgenerateddefaultfile", - "community": 105, - "community_name": "Save", - "norm_label": "testsavepatchesgenerateddefaultfile()" - }, - { - "label": "TestSavePreservesHandEdits()", - "file_type": "code", - "source_file": "Server/config/save_test.go", - "source_location": "L81", - "_origin": "ast", - "id": "server_config_save_test_testsavepreserveshandedits", - "community": 105, - "community_name": "Save", - "norm_label": "testsavepreserveshandedits()" - }, - { - "label": "TestSaveVoiceAutoDownloadBool()", - "file_type": "code", - "source_file": "Server/config/save_test.go", - "source_location": "L214", - "_origin": "ast", - "id": "server_config_save_test_testsavevoiceautodownloadbool", - "community": 105, - "community_name": "Save", - "norm_label": "testsavevoiceautodownloadbool()" - }, - { - "label": "TestSaveVoiceCredentialsOnlyWhenEmpty()", - "file_type": "code", - "source_file": "Server/config/save_test.go", - "source_location": "L162", - "_origin": "ast", - "id": "server_config_save_test_testsavevoicecredentialsonlywhenempty", - "community": 105, - "community_name": "Save", - "norm_label": "testsavevoicecredentialsonlywhenempty()" - }, - { - "label": "TestSaveYAMLInjectionIsInert()", - "file_type": "code", - "source_file": "Server/config/save_test.go", - "source_location": "L236", - "_origin": "ast", - "id": "server_config_save_test_testsaveyamlinjectionisinert", - "community": 105, - "community_name": "Save", - "norm_label": "testsaveyamlinjectionisinert()" - }, - { - "label": "verifyLoadable()", - "file_type": "code", - "source_file": "Server/config/save.go", - "source_location": "L218", - "_origin": "ast", - "id": "server_config_save_verifyloadable", - "community": 105, - "community_name": "Save", - "norm_label": "verifyloadable()" - }, - { - "label": "Admin API Authorization", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L1535", - "_origin": "ast", - "id": "docs_api_admin_api_authorization", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "admin api authorization" - }, - { - "label": "Audit Log", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L1782", - "_origin": "ast", - "id": "docs_api_audit_log", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "audit log" - }, - { - "label": "Authentication", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L7", - "_origin": "ast", - "id": "docs_api_authentication", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "authentication" - }, - { - "label": "Channel Management (admin)", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L2239", - "_origin": "ast", - "id": "docs_api_channel_management_admin", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "channel management (admin)" - }, - { - "label": "Diagnostics", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L2466", - "_origin": "ast", - "id": "docs_api_diagnostics", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "diagnostics" - }, - { - "label": "Error Codes", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L46", - "_origin": "ast", - "id": "docs_api_error_codes", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "error codes" - }, - { - "label": "GET /admin/api/audit-log", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L1784", - "_origin": "ast", - "id": "docs_api_get_admin_api_audit_log", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "get /admin/api/audit-log" - }, - { - "label": "GET /admin/api/me", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L1574", - "_origin": "ast", - "id": "docs_api_get_admin_api_me", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "get /admin/api/me" - }, - { - "label": "GET /api/v1/diagnostics/connectivity", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L2468", - "_origin": "ast", - "id": "docs_api_get_api_v1_diagnostics_connectivity", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "get /api/v1/diagnostics/connectivity" - }, - { - "label": "GET /api/v1/health", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L1432", - "_origin": "ast", - "id": "docs_api_get_api_v1_health", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "get /api/v1/health" - }, - { - "label": "GET /api/v1/info", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L1449", - "_origin": "ast", - "id": "docs_api_get_api_v1_info", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "get /api/v1/info" - }, - { - "label": "GET /api/v1/metrics", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L1466", - "_origin": "ast", - "id": "docs_api_get_api_v1_metrics", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "get /api/v1/metrics" - }, - { - "label": "GET /api/v1/search", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L856", - "_origin": "ast", - "id": "docs_api_get_api_v1_search", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "get /api/v1/search" - }, - { - "label": "GET /api/v1/ws", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L2538", - "_origin": "ast", - "id": "docs_api_get_api_v1_ws", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "get /api/v1/ws" - }, - { - "label": "GET /health", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L1430", - "_origin": "ast", - "id": "docs_api_get_health", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "get /health" - }, - { - "label": "GET /metrics (Prometheus)", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L1526", - "_origin": "ast", - "id": "docs_api_get_metrics_prometheus", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "get /metrics (prometheus)" - }, - { - "label": "Health Check", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L1428", - "_origin": "ast", - "id": "docs_api_health_check", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "health check" - }, - { - "label": "Metrics", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L1464", - "_origin": "ast", - "id": "docs_api_metrics", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "metrics" - }, - { - "label": "Middleware Stack (all routes)", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L17", - "_origin": "ast", - "id": "docs_api_middleware_stack_all_routes", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "middleware stack (all routes)" - }, - { - "label": "Query Parameters", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L863", - "_origin": "ast", - "id": "docs_api_query_parameters_863", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "query parameters" - }, - { - "label": "Response 200 OK", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L1579", - "_origin": "ast", - "id": "docs_api_response_200_ok_1579", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "response 200 ok" - }, - { - "label": "Response 200 OK", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L1791", - "_origin": "ast", - "id": "docs_api_response_200_ok_1791", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "response 200 ok" - }, - { - "label": "Response 200 OK", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L871", - "_origin": "ast", - "id": "docs_api_response_200_ok_871", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "response 200 ok" - }, - { - "label": "REST API Reference", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_api_rest_api_reference", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "rest api reference" - }, - { - "label": "Search", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L854", - "_origin": "ast", - "id": "docs_api_search", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "search" - }, - { - "label": "Server Info", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L1447", - "_origin": "ast", - "id": "docs_api_server_info", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "server info" - }, - { - "label": "Session Lifecycle", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L11", - "_origin": "ast", - "id": "docs_api_session_lifecycle", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "session lifecycle" - }, - { - "label": "Standard Error Response", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L35", - "_origin": "ast", - "id": "docs_api_standard_error_response", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "standard error response" - }, - { - "label": "WebSocket", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L2536", - "_origin": "ast", - "id": "docs_api_websocket", - "community": 106, - "community_name": "REST API Reference", - "norm_label": "websocket" - }, - { - "label": "media-visibility.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/media-visibility.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_lib_media_visibility", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "media-visibility.ts" - }, - { - "label": "allTracked", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/media-visibility.ts", - "source_location": "L37", - "_origin": "ast", - "id": "client_tauri_client_src_lib_media_visibility_alltracked", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "alltracked" - }, - { - "label": "tracked", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/media-visibility.ts", - "source_location": "L36", - "_origin": "ast", - "id": "client_tauri_client_src_lib_media_visibility_tracked", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "tracked" - }, - { - "label": "media-visibility.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/media-visibility.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_media_visibility_test", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "media-visibility.test.ts" - }, - { - "label": "disconnectMock", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/media-visibility.test.ts", - "source_location": "L14", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_media_visibility_test_disconnectmock", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "disconnectmock" - }, - { - "label": "observeMock", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/media-visibility.test.ts", - "source_location": "L12", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_media_visibility_test_observemock", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "observemock" - }, - { - "label": "unobserveMock", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/media-visibility.test.ts", - "source_location": "L13", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_media_visibility_test_unobservemock", - "community": 107, - "community_name": "media-visibility.ts", - "norm_label": "unobservemock" - }, - { - "label": "voiceMuteMsg()", - "file_type": "code", - "source_file": "Server/ws/voice_handlers_test.go", - "source_location": "L120", - "_origin": "ast", - "id": "server_ws_voice_handlers_test_voicemutemsg", - "community": 108, - "community_name": "joinVoice", - "norm_label": "voicemutemsg()" - }, - { - "label": "voice_moderation_test.go", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_voice_moderation_test", - "community": 108, - "community_name": "joinVoice", - "norm_label": "voice_moderation_test.go" - }, - { - "label": "auditActions()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L124", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_auditactions", - "community": 108, - "community_name": "joinVoice", - "norm_label": "auditactions()" - }, - { - "label": "joinVoice()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L80", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_joinvoice", - "community": 108, - "community_name": "joinVoice", - "norm_label": "joinvoice()" - }, - { - "label": "newVoiceModHub()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L33", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_newvoicemodhub", - "community": 108, - "community_name": "joinVoice", - "norm_label": "newvoicemodhub()" - }, - { - "label": "seedVoiceUserWithRole()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L66", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_seedvoiceuserwithrole", - "community": 108, - "community_name": "joinVoice", - "norm_label": "seedvoiceuserwithrole()" - }, - { - "label": "TestVoiceDeafen_SelfUndeafenWhileServerDeafened_Refused()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L693", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_testvoicedeafen_selfundeafenwhileserverdeafened_refused", - "community": 108, - "community_name": "joinVoice", - "norm_label": "testvoicedeafen_selfundeafenwhileserverdeafened_refused()" - }, - { - "label": "TestVoiceMod_Deafen_ClearingRestoresSelfUnmute()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L401", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_testvoicemod_deafen_clearingrestoresselfunmute", - "community": 108, - "community_name": "joinVoice", - "norm_label": "testvoicemod_deafen_clearingrestoresselfunmute()" - }, - { - "label": "TestVoiceMod_Deafen_SetsServerDeafenedAndMutes()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L361", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_testvoicemod_deafen_setsserverdeafenedandmutes", - "community": 108, - "community_name": "joinVoice", - "norm_label": "testvoicemod_deafen_setsserverdeafenedandmutes()" - }, - { - "label": "TestVoiceMod_Kick_EvictionIsScopedToAuthorizedChannel()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L639", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_testvoicemod_kick_evictionisscopedtoauthorizedchannel", - "community": 108, - "community_name": "joinVoice", - "norm_label": "testvoicemod_kick_evictionisscopedtoauthorizedchannel()" - }, - { - "label": "TestVoiceMod_Kick_RemovesFromVoiceAndNotifiesTarget()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L445", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_testvoicemod_kick_removesfromvoiceandnotifiestarget", - "community": 108, - "community_name": "joinVoice", - "norm_label": "testvoicemod_kick_removesfromvoiceandnotifiestarget()" - }, - { - "label": "TestVoiceMod_Kick_Self_BadRequest()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L226", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_testvoicemod_kick_self_badrequest", - "community": 108, - "community_name": "joinVoice", - "norm_label": "testvoicemod_kick_self_badrequest()" - }, - { - "label": "TestVoiceMod_Move_ArchivedDestination_BadRequest()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L541", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_testvoicemod_move_archiveddestination_badrequest", - "community": 108, - "community_name": "joinVoice", - "norm_label": "testvoicemod_move_archiveddestination_badrequest()" - }, - { - "label": "TestVoiceMod_Move_DisconnectsAndSendsVoiceMoved()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L473", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_testvoicemod_move_disconnectsandsendsvoicemoved", - "community": 108, - "community_name": "joinVoice", - "norm_label": "testvoicemod_move_disconnectsandsendsvoicemoved()" - }, - { - "label": "TestVoiceMod_Move_TargetCannotConnectToDestination_Forbidden()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L582", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_testvoicemod_move_targetcannotconnecttodestination_forbidden", - "community": 108, - "community_name": "joinVoice", - "norm_label": "testvoicemod_move_targetcannotconnecttodestination_forbidden()" - }, - { - "label": "TestVoiceMod_Move_TextChannelDestination_BadRequest()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L506", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_testvoicemod_move_textchanneldestination_badrequest", - "community": 108, - "community_name": "joinVoice", - "norm_label": "testvoicemod_move_textchanneldestination_badrequest()" - }, - { - "label": "TestVoiceMod_Mute_Clear_LeavesSelfMuteAlone()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L333", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_testvoicemod_mute_clear_leavesselfmutealone", - "community": 108, - "community_name": "joinVoice", - "norm_label": "testvoicemod_mute_clear_leavesselfmutealone()" - }, - { - "label": "TestVoiceMod_Mute_SetsServerMutedAndBroadcasts()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L294", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_testvoicemod_mute_setsservermutedandbroadcasts", - "community": 108, - "community_name": "joinVoice", - "norm_label": "testvoicemod_mute_setsservermutedandbroadcasts()" - }, - { - "label": "TestVoiceMod_Mute_TargetInDMCallActorIsParticipant_Allowed()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L271", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_testvoicemod_mute_targetindmcallactorisparticipant_allowed", - "community": 108, - "community_name": "joinVoice", - "norm_label": "testvoicemod_mute_targetindmcallactorisparticipant_allowed()" - }, - { - "label": "TestVoiceMod_Mute_TargetInDMCallActorNotParticipant_VoiceError()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L244", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_testvoicemod_mute_targetindmcallactornotparticipant_voiceerror", - "community": 108, - "community_name": "joinVoice", - "norm_label": "testvoicemod_mute_targetindmcallactornotparticipant_voiceerror()" - }, - { - "label": "TestVoiceMod_Mute_TargetNotInVoice_VoiceError()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L187", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_testvoicemod_mute_targetnotinvoice_voiceerror", - "community": 108, - "community_name": "joinVoice", - "norm_label": "testvoicemod_mute_targetnotinvoice_voiceerror()" - }, - { - "label": "TestVoiceMod_Mute_TargetOutranksActor_Forbidden()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L163", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_testvoicemod_mute_targetoutranksactor_forbidden", - "community": 108, - "community_name": "joinVoice", - "norm_label": "testvoicemod_mute_targetoutranksactor_forbidden()" - }, - { - "label": "TestVoiceMod_Mute_WithoutMutePermission_Forbidden()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L139", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_testvoicemod_mute_withoutmutepermission_forbidden", - "community": 108, - "community_name": "joinVoice", - "norm_label": "testvoicemod_mute_withoutmutepermission_forbidden()" - }, - { - "label": "TestVoiceMod_Mute_WrongChannel_VoiceError()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L205", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_testvoicemod_mute_wrongchannel_voiceerror", - "community": 108, - "community_name": "joinVoice", - "norm_label": "testvoicemod_mute_wrongchannel_voiceerror()" - }, - { - "label": "TestVoiceMute_SelfMuteWhileServerMuted_Allowed()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L715", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_testvoicemute_selfmutewhileservermuted_allowed", - "community": 108, - "community_name": "joinVoice", - "norm_label": "testvoicemute_selfmutewhileservermuted_allowed()" - }, - { - "label": "TestVoiceMute_SelfUnmuteWhileServerMuted_Refused()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L667", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_testvoicemute_selfunmutewhileservermuted_refused", - "community": 108, - "community_name": "joinVoice", - "norm_label": "testvoicemute_selfunmutewhileservermuted_refused()" - }, - { - "label": "voiceModDeafenMsg()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L99", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_voicemoddeafenmsg", - "community": 108, - "community_name": "joinVoice", - "norm_label": "voicemoddeafenmsg()" - }, - { - "label": "voiceModKickMsg()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L115", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_voicemodkickmsg", - "community": 108, - "community_name": "joinVoice", - "norm_label": "voicemodkickmsg()" - }, - { - "label": "voiceModMoveMsg()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L107", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_voicemodmovemsg", - "community": 108, - "community_name": "joinVoice", - "norm_label": "voicemodmovemsg()" - }, - { - "label": "voiceModMuteMsg()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation_test.go", - "source_location": "L91", - "_origin": "ast", - "id": "server_ws_voice_moderation_test_voicemodmutemsg", - "community": 108, - "community_name": "joinVoice", - "norm_label": "voicemodmutemsg()" - }, - { - "label": "ptt.rs", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "ptt.rs" - }, - { - "label": "allowed_capture_vk_accepts_safe_non_text_keys()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L599", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_allowed_capture_vk_accepts_safe_non_text_keys", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "allowed_capture_vk_accepts_safe_non_text_keys()" - }, - { - "label": "allowed_capture_vk_rejects_text_and_modifier_keys()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L609", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_allowed_capture_vk_rejects_text_and_modifier_keys", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "allowed_capture_vk_rejects_text_and_modifier_keys()" - }, - { - "label": "is_allowed_ptt_capture_vk()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L34", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_is_allowed_ptt_capture_vk", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "is_allowed_ptt_capture_vk()" - }, - { - "label": "is_key_down()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L70", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_is_key_down", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "is_key_down()" - }, - { - "label": "is_modifier_vk()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L296", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_is_modifier_vk", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "is_modifier_vk()" - }, - { - "label": "keycode_to_vk()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L122", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_keycode_to_vk", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "keycode_to_vk()" - }, - { - "label": "linux_keycode_round_trips_for_common_keys()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L622", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_linux_keycode_round_trips_for_common_keys", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "linux_keycode_round_trips_for_common_keys()" - }, - { - "label": "linux_unknown_vk_returns_none()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L649", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_linux_unknown_vk_returns_none", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "linux_unknown_vk_returns_none()" - }, - { - "label": "ptt_get_key()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L455", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_ptt_get_key", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "ptt_get_key()" - }, - { - "label": "ptt_listen_for_key()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L463", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_ptt_listen_for_key", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "ptt_listen_for_key()" - }, - { - "label": "ptt_polling_supported()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L330", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_ptt_polling_supported", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "ptt_polling_supported()" - }, - { - "label": "ptt_set_key()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L445", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_ptt_set_key", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "ptt_set_key()" - }, - { - "label": "ptt_set_key_accepts_valid_codes_and_get_reflects_them()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L540", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_ptt_set_key_accepts_valid_codes_and_get_reflects_them", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "ptt_set_key_accepts_valid_codes_and_get_reflects_them()" - }, - { - "label": "ptt_set_key_rejects_invalid_codes()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L553", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_ptt_set_key_rejects_invalid_codes", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "ptt_set_key_rejects_invalid_codes()" - }, - { - "label": "ptt_start()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L357", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_ptt_start", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "ptt_start()" - }, - { - "label": "ptt_stop()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L413", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_ptt_stop", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "ptt_stop()" - }, - { - "label": "ptt_stop_internal()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L423", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_ptt_stop_internal", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "ptt_stop_internal()" - }, - { - "label": "ptt_stop_is_noop_when_not_running()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L566", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_ptt_stop_is_noop_when_not_running", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "ptt_stop_is_noop_when_not_running()" - }, - { - "label": "ptt_transition()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L311", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_ptt_transition", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "ptt_transition()" - }, - { - "label": "ptt_transition_emits_release_when_binding_cleared_while_key_held()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L589", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_ptt_transition_emits_release_when_binding_cleared_while_key_held", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "ptt_transition_emits_release_when_binding_cleared_while_key_held()" - }, - { - "label": "ptt_transition_reports_edges_only()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L576", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_ptt_transition_reports_edges_only", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "ptt_transition_reports_edges_only()" - }, - { - "label": "AppHandle", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_rs_apphandle", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "apphandle" - }, - { - "label": "Option", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_rs_option", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "option" - }, - { - "label": "R", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_rs_r", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "r" - }, - { - "label": "String", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_rs_string", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "string" - }, - { - "label": "vk_to_keycode()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/ptt.rs", - "source_location": "L215", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_ptt_vk_to_keycode", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "vk_to_keycode()" - }, - { - "label": "Keycode", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "keycode", - "community": 109, - "community_name": "ptt.rs", - "norm_label": "keycode" - }, - { - "label": "can_send_ready_test.go", - "file_type": "code", - "source_file": "Server/ws/can_send_ready_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_can_send_ready_test", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "can_send_ready_test.go" - }, - { - "label": "TestBuildReady_IncludesCanSend()", - "file_type": "code", - "source_file": "Server/ws/can_send_ready_test.go", - "source_location": "L11", - "_origin": "ast", - "id": "server_ws_can_send_ready_test_testbuildready_includescansend", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testbuildready_includescansend()" - }, - { - "label": "channel_flags_ready_test.go", - "file_type": "code", - "source_file": "Server/ws/channel_flags_ready_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_channel_flags_ready_test", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "channel_flags_ready_test.go" - }, - { - "label": "TestBuildReady_CarriesChannelFeatureFlags()", - "file_type": "code", - "source_file": "Server/ws/channel_flags_ready_test.go", - "source_location": "L16", - "_origin": "ast", - "id": "server_ws_channel_flags_ready_test_testbuildready_carrieschannelfeatureflags", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testbuildready_carrieschannelfeatureflags()" - }, - { - "label": "coverage_boost2_test.go", - "file_type": "code", - "source_file": "Server/ws/coverage_boost2_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_coverage_boost2_test", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "coverage_boost2_test.go" - }, - { - "label": "TestBuildDMChannelOpen_NilAvatar()", - "file_type": "code", - "source_file": "Server/ws/coverage_boost2_test.go", - "source_location": "L140", - "_origin": "ast", - "id": "server_ws_coverage_boost2_test_testbuilddmchannelopen_nilavatar", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testbuilddmchannelopen_nilavatar()" - }, - { - "label": "TestBuildDMChannelOpen_NilRecipient()", - "file_type": "code", - "source_file": "Server/ws/coverage_boost2_test.go", - "source_location": "L87", - "_origin": "ast", - "id": "server_ws_coverage_boost2_test_testbuilddmchannelopen_nilrecipient", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testbuilddmchannelopen_nilrecipient()" - }, - { - "label": "TestBuildDMChannelOpen_ValidRecipient()", - "file_type": "code", - "source_file": "Server/ws/coverage_boost2_test.go", - "source_location": "L94", - "_origin": "ast", - "id": "server_ws_coverage_boost2_test_testbuilddmchannelopen_validrecipient", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testbuilddmchannelopen_validrecipient()" - }, - { - "label": "TestHandleVoiceCamera_BadPayload()", - "file_type": "code", - "source_file": "Server/ws/coverage_boost2_test.go", - "source_location": "L356", - "_origin": "ast", - "id": "server_ws_coverage_boost2_test_testhandlevoicecamera_badpayload", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicecamera_badpayload()" - }, - { - "label": "TestHandleVoiceCamera_NotInVoice2()", - "file_type": "code", - "source_file": "Server/ws/coverage_boost2_test.go", - "source_location": "L232", - "_origin": "ast", - "id": "server_ws_coverage_boost2_test_testhandlevoicecamera_notinvoice2", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicecamera_notinvoice2()" - }, - { - "label": "TestHandleVoiceDeafen_BadPayload()", - "file_type": "code", - "source_file": "Server/ws/coverage_boost2_test.go", - "source_location": "L323", - "_origin": "ast", - "id": "server_ws_coverage_boost2_test_testhandlevoicedeafen_badpayload", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicedeafen_badpayload()" - }, - { - "label": "TestHandleVoiceDeafen_NotInVoice2()", - "file_type": "code", - "source_file": "Server/ws/coverage_boost2_test.go", - "source_location": "L202", - "_origin": "ast", - "id": "server_ws_coverage_boost2_test_testhandlevoicedeafen_notinvoice2", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicedeafen_notinvoice2()" - }, - { - "label": "TestHandleVoiceMute_BadPayload()", - "file_type": "code", - "source_file": "Server/ws/coverage_boost2_test.go", - "source_location": "L292", - "_origin": "ast", - "id": "server_ws_coverage_boost2_test_testhandlevoicemute_badpayload", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicemute_badpayload()" - }, - { - "label": "TestHandleVoiceMute_NotInVoice2()", - "file_type": "code", - "source_file": "Server/ws/coverage_boost2_test.go", - "source_location": "L168", - "_origin": "ast", - "id": "server_ws_coverage_boost2_test_testhandlevoicemute_notinvoice2", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicemute_notinvoice2()" - }, - { - "label": "TestHandleVoiceScreenshare_BadPayload()", - "file_type": "code", - "source_file": "Server/ws/coverage_boost2_test.go", - "source_location": "L390", - "_origin": "ast", - "id": "server_ws_coverage_boost2_test_testhandlevoicescreenshare_badpayload", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicescreenshare_badpayload()" - }, - { - "label": "TestHandleVoiceScreenshare_NotInVoice2()", - "file_type": "code", - "source_file": "Server/ws/coverage_boost2_test.go", - "source_location": "L262", - "_origin": "ast", - "id": "server_ws_coverage_boost2_test_testhandlevoicescreenshare_notinvoice2", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicescreenshare_notinvoice2()" - }, - { - "label": "TestIsUserConnected_AfterUnregister()", - "file_type": "code", - "source_file": "Server/ws/coverage_boost2_test.go", - "source_location": "L35", - "_origin": "ast", - "id": "server_ws_coverage_boost2_test_testisuserconnected_afterunregister", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testisuserconnected_afterunregister()" - }, - { - "label": "TestIsUserConnected_Connected()", - "file_type": "code", - "source_file": "Server/ws/coverage_boost2_test.go", - "source_location": "L22", - "_origin": "ast", - "id": "server_ws_coverage_boost2_test_testisuserconnected_connected", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testisuserconnected_connected()" - }, - { - "label": "TestIsUserConnected_NotConnected()", - "file_type": "code", - "source_file": "Server/ws/coverage_boost2_test.go", - "source_location": "L14", - "_origin": "ast", - "id": "server_ws_coverage_boost2_test_testisuserconnected_notconnected", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testisuserconnected_notconnected()" - }, - { - "label": "TestLeaveVoiceChannelWithRetry_EmptyToken()", - "file_type": "code", - "source_file": "Server/ws/coverage_boost2_test.go", - "source_location": "L424", - "_origin": "ast", - "id": "server_ws_coverage_boost2_test_testleavevoicechannelwithretry_emptytoken", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testleavevoicechannelwithretry_emptytoken()" - }, - { - "label": "TestQualityBitrate_EmptyFallsBackToMedium()", - "file_type": "code", - "source_file": "Server/ws/coverage_boost2_test.go", - "source_location": "L78", - "_origin": "ast", - "id": "server_ws_coverage_boost2_test_testqualitybitrate_emptyfallsbacktomedium", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testqualitybitrate_emptyfallsbacktomedium()" - }, - { - "label": "TestQualityBitrate_KnownPresets()", - "file_type": "code", - "source_file": "Server/ws/coverage_boost2_test.go", - "source_location": "L54", - "_origin": "ast", - "id": "server_ws_coverage_boost2_test_testqualitybitrate_knownpresets", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testqualitybitrate_knownpresets()" - }, - { - "label": "TestQualityBitrate_UnknownFallsBackToMedium()", - "file_type": "code", - "source_file": "Server/ws/coverage_boost2_test.go", - "source_location": "L71", - "_origin": "ast", - "id": "server_ws_coverage_boost2_test_testqualitybitrate_unknownfallsbacktomedium", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testqualitybitrate_unknownfallsbacktomedium()" - }, - { - "label": "coverage_chat_test.go", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_coverage_chat_test", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "coverage_chat_test.go" - }, - { - "label": "TestHandleChannelFocus_UpdatesReadState()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L522", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlechannelfocus_updatesreadstate", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechannelfocus_updatesreadstate()" - }, - { - "label": "TestHandleChatDelete_InvalidMessageID()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L384", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlechatdelete_invalidmessageid", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechatdelete_invalidmessageid()" - }, - { - "label": "TestHandleChatDelete_InvalidPayload()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L364", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlechatdelete_invalidpayload", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechatdelete_invalidpayload()" - }, - { - "label": "TestHandleChatDelete_MessageNotFound()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L406", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlechatdelete_messagenotfound", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechatdelete_messagenotfound()" - }, - { - "label": "TestHandleChatEdit_EmptyContent()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L339", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlechatedit_emptycontent", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechatedit_emptycontent()" - }, - { - "label": "TestHandleChatEdit_InvalidMessageID()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L316", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlechatedit_invalidmessageid", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechatedit_invalidmessageid()" - }, - { - "label": "TestHandleChatEdit_InvalidPayload()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L296", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlechatedit_invalidpayload", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechatedit_invalidpayload()" - }, - { - "label": "TestHandleChatSend_ChannelNotFound()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L91", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlechatsend_channelnotfound", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechatsend_channelnotfound()" - }, - { - "label": "TestHandleChatSend_ContentTooLong()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L42", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlechatsend_contenttoolong", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechatsend_contenttoolong()" - }, - { - "label": "TestHandleChatSend_EmptyContent()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L18", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlechatsend_emptycontent", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechatsend_emptycontent()" - }, - { - "label": "TestHandleChatSend_InvalidChannelID()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L68", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlechatsend_invalidchannelid", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechatsend_invalidchannelid()" - }, - { - "label": "TestHandleChatSend_InvalidPayload()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L114", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlechatsend_invalidpayload", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechatsend_invalidpayload()" - }, - { - "label": "TestHandleChatSend_NegativeChannelID()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L134", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlechatsend_negativechannelid", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechatsend_negativechannelid()" - }, - { - "label": "TestHandleChatSend_SlowMode_EnforcedForMember()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L241", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlechatsend_slowmode_enforcedformember", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechatsend_slowmode_enforcedformember()" - }, - { - "label": "TestHandleChatSend_WithNilAvatar()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L553", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlechatsend_withnilavatar", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechatsend_withnilavatar()" - }, - { - "label": "TestHandleChatSend_WithNonNilAvatar()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L586", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlechatsend_withnonnilavatar", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechatsend_withnonnilavatar()" - }, - { - "label": "TestHandleChatSend_WithReplyTo()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L159", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlechatsend_withreplyto", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechatsend_withreplyto()" - }, - { - "label": "TestHandleReaction_ControlCharInEmoji()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L497", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlereaction_controlcharinemoji", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlereaction_controlcharinemoji()" - }, - { - "label": "TestHandleReaction_EmojiTooLong()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L474", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlereaction_emojitoolong", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlereaction_emojitoolong()" - }, - { - "label": "TestHandleReaction_EmptyEmoji()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L451", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlereaction_emptyemoji", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlereaction_emptyemoji()" - }, - { - "label": "TestHandleReaction_InvalidPayload()", - "file_type": "code", - "source_file": "Server/ws/coverage_chat_test.go", - "source_location": "L431", - "_origin": "ast", - "id": "server_ws_coverage_chat_test_testhandlereaction_invalidpayload", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlereaction_invalidpayload()" - }, - { - "label": "coverage_helpers_test.go", - "file_type": "code", - "source_file": "Server/ws/coverage_helpers_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_coverage_helpers_test", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "coverage_helpers_test.go" - }, - { - "label": "drainChanBuf()", - "file_type": "code", - "source_file": "Server/ws/coverage_helpers_test.go", - "source_location": "L142", - "_origin": "ast", - "id": "server_ws_coverage_helpers_test_drainchanbuf", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "drainchanbuf()" - }, - { - "label": "drainForErrorCode()", - "file_type": "code", - "source_file": "Server/ws/coverage_helpers_test.go", - "source_location": "L119", - "_origin": "ast", - "id": "server_ws_coverage_helpers_test_drainforerrorcode", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "drainforerrorcode()" - }, - { - "label": "newCoverageHub()", - "file_type": "code", - "source_file": "Server/ws/coverage_helpers_test.go", - "source_location": "L79", - "_origin": "ast", - "id": "server_ws_coverage_helpers_test_newcoveragehub", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "newcoveragehub()" - }, - { - "label": "openCoverageDB()", - "file_type": "code", - "source_file": "Server/ws/coverage_helpers_test.go", - "source_location": "L63", - "_origin": "ast", - "id": "server_ws_coverage_helpers_test_opencoveragedb", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "opencoveragedb()" - }, - { - "label": "seedCoverageOwner()", - "file_type": "code", - "source_file": "Server/ws/coverage_helpers_test.go", - "source_location": "L103", - "_origin": "ast", - "id": "server_ws_coverage_helpers_test_seedcoverageowner", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "seedcoverageowner()" - }, - { - "label": "seedVoiceChannel()", - "file_type": "code", - "source_file": "Server/ws/coverage_helpers_test.go", - "source_location": "L167", - "_origin": "ast", - "id": "server_ws_coverage_helpers_test_seedvoicechannel", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "seedvoicechannel()" - }, - { - "label": "voiceTokenRefreshMsg()", - "file_type": "code", - "source_file": "Server/ws/coverage_helpers_test.go", - "source_location": "L176", - "_origin": "ast", - "id": "server_ws_coverage_helpers_test_voicetokenrefreshmsg", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "voicetokenrefreshmsg()" - }, - { - "label": "coverage_misc_test.go", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_coverage_misc_test", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "coverage_misc_test.go" - }, - { - "label": "TestBroadcastToAll_DropsWhenFull()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L720", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testbroadcasttoall_dropswhenfull", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testbroadcasttoall_dropswhenfull()" - }, - { - "label": "TestBroadcastToChannel_DropsWhenFull()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L705", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testbroadcasttochannel_dropswhenfull", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testbroadcasttochannel_dropswhenfull()" - }, - { - "label": "TestBuildAuthOK_NonNilAvatar()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L549", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testbuildauthok_nonnilavatar", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testbuildauthok_nonnilavatar()" - }, - { - "label": "TestBuildChatSendOK_ValidJSON()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L378", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testbuildchatsendok_validjson", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testbuildchatsendok_validjson()" - }, - { - "label": "TestBuildJSON_ChannelValue_ReturnsFallback()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L74", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testbuildjson_channelvalue_returnsfallback", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testbuildjson_channelvalue_returnsfallback()" - }, - { - "label": "TestBuildJSON_UnmarshalableValue_ReturnsFallback()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L56", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testbuildjson_unmarshalablevalue_returnsfallback", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testbuildjson_unmarshalablevalue_returnsfallback()" - }, - { - "label": "TestBuildPresenceMsg_ValidJSON()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L365", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testbuildpresencemsg_validjson", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testbuildpresencemsg_validjson()" - }, - { - "label": "TestBuildReady_MultipleChannelTypes()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L201", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testbuildready_multiplechanneltypes", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testbuildready_multiplechanneltypes()" - }, - { - "label": "TestBuildReady_VoiceChannelWithParticipants()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L160", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testbuildready_voicechannelwithparticipants", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testbuildready_voicechannelwithparticipants()" - }, - { - "label": "TestClearVoiceChID_DoubleClearReturnsZero()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L687", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testclearvoicechid_doubleclearreturnszero", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testclearvoicechid_doubleclearreturnszero()" - }, - { - "label": "TestClearVoiceChID_ReturnsOldValueAndClearsToZero()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L661", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testclearvoicechid_returnsoldvalueandclearstozero", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testclearvoicechid_returnsoldvalueandclearstozero()" - }, - { - "label": "TestClearVoiceChID_ReturnsZeroWhenNotInVoice()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L676", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testclearvoicechid_returnszerowhennotinvoice", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testclearvoicechid_returnszerowhennotinvoice()" - }, - { - "label": "TestDeliverBroadcast_FullBuffer_DropsMessage()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L520", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testdeliverbroadcast_fullbuffer_dropsmessage", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testdeliverbroadcast_fullbuffer_dropsmessage()" - }, - { - "label": "TestGetLastActivity_MultipleTouch()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L642", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testgetlastactivity_multipletouch", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testgetlastactivity_multipletouch()" - }, - { - "label": "TestGetLastActivity_ReturnsZeroForNewTestClient()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L616", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testgetlastactivity_returnszerofornewtestclient", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testgetlastactivity_returnszerofornewtestclient()" - }, - { - "label": "TestGetLastActivity_UpdatedByTouch()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L627", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testgetlastactivity_updatedbytouch", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testgetlastactivity_updatedbytouch()" - }, - { - "label": "TestGracefulStop_MultipleClients()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L110", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testgracefulstop_multipleclients", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testgracefulstop_multipleclients()" - }, - { - "label": "TestGracefulStop_WithClientsHavingVoiceState()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L84", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testgracefulstop_withclientshavingvoicestate", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testgracefulstop_withclientshavingvoicestate()" - }, - { - "label": "TestHandleChannelFocus_InvalidChannelID()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L248", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testhandlechannelfocus_invalidchannelid", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechannelfocus_invalidchannelid()" - }, - { - "label": "TestHandleChannelFocus_ValidChannel()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L271", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testhandlechannelfocus_validchannel", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechannelfocus_validchannel()" - }, - { - "label": "TestHandleChatSend_WithAttachments_NoPermission()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L415", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testhandlechatsend_withattachments_nopermission", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechatsend_withattachments_nopermission()" - }, - { - "label": "TestHandleChatSend_WithAttachments_Success()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L456", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testhandlechatsend_withattachments_success", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlechatsend_withattachments_success()" - }, - { - "label": "TestHandleMessage_Ping_ReturnsPong()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L132", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testhandlemessage_ping_returnspong", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlemessage_ping_returnspong()" - }, - { - "label": "TestHandlePresence_InvalidPayload()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L319", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testhandlepresence_invalidpayload", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlepresence_invalidpayload()" - }, - { - "label": "TestHandlePresence_InvalidStatus()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L297", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testhandlepresence_invalidstatus", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlepresence_invalidstatus()" - }, - { - "label": "TestHandleTyping_InvalidChannelID()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L341", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testhandletyping_invalidchannelid", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandletyping_invalidchannelid()" - }, - { - "label": "TestHasChannelPerm_NilUser_DeniesPermission()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L493", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testhaschannelperm_niluser_deniespermission", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhaschannelperm_niluser_deniespermission()" - }, - { - "label": "TestSendToUser_FullBuffer_ReturnsFalse()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L394", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testsendtouser_fullbuffer_returnsfalse", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testsendtouser_fullbuffer_returnsfalse()" - }, - { - "label": "TestSetClientVoiceChID_LastWriteWins()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L42", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testsetclientvoicechid_lastwritewins", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testsetclientvoicechid_lastwritewins()" - }, - { - "label": "TestSetClientVoiceChID_SetsValue()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L19", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testsetclientvoicechid_setsvalue", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testsetclientvoicechid_setsvalue()" - }, - { - "label": "TestSetClientVoiceChID_ZeroClearsVoice()", - "file_type": "code", - "source_file": "Server/ws/coverage_misc_test.go", - "source_location": "L30", - "_origin": "ast", - "id": "server_ws_coverage_misc_test_testsetclientvoicechid_zeroclearsvoice", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testsetclientvoicechid_zeroclearsvoice()" - }, - { - "label": "coverage_voice_lifecycle_test.go", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_lifecycle_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_coverage_voice_lifecycle_test", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "coverage_voice_lifecycle_test.go" - }, - { - "label": "TestCleanupVoiceForChannel_DBStateButNoClient()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_lifecycle_test.go", - "source_location": "L370", - "_origin": "ast", - "id": "server_ws_coverage_voice_lifecycle_test_testcleanupvoiceforchannel_dbstatebutnoclient", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testcleanupvoiceforchannel_dbstatebutnoclient()" - }, - { - "label": "TestCleanupVoiceForChannel_DoesNotClobberMovedParticipant()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_lifecycle_test.go", - "source_location": "L326", - "_origin": "ast", - "id": "server_ws_coverage_voice_lifecycle_test_testcleanupvoiceforchannel_doesnotclobbermovedparticipant", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testcleanupvoiceforchannel_doesnotclobbermovedparticipant()" - }, - { - "label": "TestCleanupVoiceForChannel_EmptyChannel()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_lifecycle_test.go", - "source_location": "L355", - "_origin": "ast", - "id": "server_ws_coverage_voice_lifecycle_test_testcleanupvoiceforchannel_emptychannel", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testcleanupvoiceforchannel_emptychannel()" - }, - { - "label": "TestCleanupVoiceForChannel_WithClientsInChannel()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_lifecycle_test.go", - "source_location": "L274", - "_origin": "ast", - "id": "server_ws_coverage_voice_lifecycle_test_testcleanupvoiceforchannel_withclientsinchannel", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testcleanupvoiceforchannel_withclientsinchannel()" - }, - { - "label": "TestHandleVoiceTokenRefresh_InVoice_ReturnsToken()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_lifecycle_test.go", - "source_location": "L35", - "_origin": "ast", - "id": "server_ws_coverage_voice_lifecycle_test_testhandlevoicetokenrefresh_invoice_returnstoken", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicetokenrefresh_invoice_returnstoken()" - }, - { - "label": "TestHandleVoiceTokenRefresh_NilUser()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_lifecycle_test.go", - "source_location": "L67", - "_origin": "ast", - "id": "server_ws_coverage_voice_lifecycle_test_testhandlevoicetokenrefresh_niluser", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicetokenrefresh_niluser()" - }, - { - "label": "TestHandleVoiceTokenRefresh_NotInVoice()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_lifecycle_test.go", - "source_location": "L19", - "_origin": "ast", - "id": "server_ws_coverage_voice_lifecycle_test_testhandlevoicetokenrefresh_notinvoice", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicetokenrefresh_notinvoice()" - }, - { - "label": "TestLeaveVoiceChannelWithRetry_NoVoiceState_NilReturn()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_lifecycle_test.go", - "source_location": "L262", - "_origin": "ast", - "id": "server_ws_coverage_voice_lifecycle_test_testleavevoicechannelwithretry_novoicestate_nilreturn", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testleavevoicechannelwithretry_novoicestate_nilreturn()" - }, - { - "label": "TestLeaveVoiceChannelWithRetry_SuccessOnFirstAttempt()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_lifecycle_test.go", - "source_location": "L237", - "_origin": "ast", - "id": "server_ws_coverage_voice_lifecycle_test_testleavevoicechannelwithretry_successonfirstattempt", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testleavevoicechannelwithretry_successonfirstattempt()" - }, - { - "label": "TestRollbackVoiceJoin_ClearsVoiceStateAndBroadcasts()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_lifecycle_test.go", - "source_location": "L91", - "_origin": "ast", - "id": "server_ws_coverage_voice_lifecycle_test_testrollbackvoicejoin_clearsvoicestateandbroadcasts", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testrollbackvoicejoin_clearsvoicestateandbroadcasts()" - }, - { - "label": "TestRollbackVoiceJoin_EmptyTokenDoesNotDeleteDifferentChannel()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_lifecycle_test.go", - "source_location": "L201", - "_origin": "ast", - "id": "server_ws_coverage_voice_lifecycle_test_testrollbackvoicejoin_emptytokendoesnotdeletedifferentchannel", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testrollbackvoicejoin_emptytokendoesnotdeletedifferentchannel()" - }, - { - "label": "TestRollbackVoiceJoin_NoDBState_DoesNotPanic()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_lifecycle_test.go", - "source_location": "L132", - "_origin": "ast", - "id": "server_ws_coverage_voice_lifecycle_test_testrollbackvoicejoin_nodbstate_doesnotpanic", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testrollbackvoicejoin_nodbstate_doesnotpanic()" - }, - { - "label": "TestRollbackVoiceJoin_StaleTokenDoesNotDeleteNewerJoin()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_lifecycle_test.go", - "source_location": "L158", - "_origin": "ast", - "id": "server_ws_coverage_voice_lifecycle_test_testrollbackvoicejoin_staletokendoesnotdeletenewerjoin", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testrollbackvoicejoin_staletokendoesnotdeletenewerjoin()" - }, - { - "label": "TestSweepStaleVoiceStates_EvictsRevokedConnectVoice()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_lifecycle_test.go", - "source_location": "L486", - "_origin": "ast", - "id": "server_ws_coverage_voice_lifecycle_test_testsweepstalevoicestates_evictsrevokedconnectvoice", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testsweepstalevoicestates_evictsrevokedconnectvoice()" - }, - { - "label": "TestSweepStaleVoiceStates_MismatchedChannelIsGhost()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_lifecycle_test.go", - "source_location": "L455", - "_origin": "ast", - "id": "server_ws_coverage_voice_lifecycle_test_testsweepstalevoicestates_mismatchedchannelisghost", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testsweepstalevoicestates_mismatchedchannelisghost()" - }, - { - "label": "TestSweepStaleVoiceStates_NoStatesNoPanic()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_lifecycle_test.go", - "source_location": "L439", - "_origin": "ast", - "id": "server_ws_coverage_voice_lifecycle_test_testsweepstalevoicestates_nostatesnopanic", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testsweepstalevoicestates_nostatesnopanic()" - }, - { - "label": "TestSweepStaleVoiceStates_PreservesActiveClientState()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_lifecycle_test.go", - "source_location": "L414", - "_origin": "ast", - "id": "server_ws_coverage_voice_lifecycle_test_testsweepstalevoicestates_preservesactiveclientstate", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testsweepstalevoicestates_preservesactiveclientstate()" - }, - { - "label": "TestSweepStaleVoiceStates_RemovesGhostState()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_lifecycle_test.go", - "source_location": "L389", - "_origin": "ast", - "id": "server_ws_coverage_voice_lifecycle_test_testsweepstalevoicestates_removesghoststate", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testsweepstalevoicestates_removesghoststate()" - }, - { - "label": "coverage_voice_test.go", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_coverage_voice_test", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "coverage_voice_test.go" - }, - { - "label": "TestHandleVoiceCamera_FullFlow()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L714", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicecamera_fullflow", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicecamera_fullflow()" - }, - { - "label": "TestHandleVoiceCamera_InvalidPayload()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L133", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicecamera_invalidpayload", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicecamera_invalidpayload()" - }, - { - "label": "TestHandleVoiceCamera_NotInVoice()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L111", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicecamera_notinvoice", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicecamera_notinvoice()" - }, - { - "label": "TestHandleVoiceDeafen_FullFlow()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L530", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicedeafen_fullflow", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicedeafen_fullflow()" - }, - { - "label": "TestHandleVoiceDeafen_InvalidPayload()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L86", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicedeafen_invalidpayload", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicedeafen_invalidpayload()" - }, - { - "label": "TestHandleVoiceDeafen_NotInVoice()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L818", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicedeafen_notinvoice", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicedeafen_notinvoice()" - }, - { - "label": "TestHandleVoiceJoin_AlreadyInSameChannel()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L320", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicejoin_alreadyinsamechannel", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicejoin_alreadyinsamechannel()" - }, - { - "label": "TestHandleVoiceJoin_ChannelFull()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L395", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicejoin_channelfull", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicejoin_channelfull()" - }, - { - "label": "TestHandleVoiceJoin_ChannelNotFound()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L570", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicejoin_channelnotfound", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicejoin_channelnotfound()" - }, - { - "label": "TestHandleVoiceJoin_FullFlow()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L210", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicejoin_fullflow", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicejoin_fullflow()" - }, - { - "label": "TestHandleVoiceJoin_InvalidChannelID()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L19", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicejoin_invalidchannelid", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicejoin_invalidchannelid()" - }, - { - "label": "TestHandleVoiceJoin_InvalidQualityFallsBackToMedium()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L842", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicejoin_invalidqualityfallsbacktomedium", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicejoin_invalidqualityfallsbacktomedium()" - }, - { - "label": "TestHandleVoiceJoin_MultipleParticipants()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L632", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicejoin_multipleparticipants", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicejoin_multipleparticipants()" - }, - { - "label": "TestHandleVoiceJoin_NegativeChannelID()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L41", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicejoin_negativechannelid", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicejoin_negativechannelid()" - }, - { - "label": "TestHandleVoiceJoin_SwitchChannels()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L346", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicejoin_switchchannels", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicejoin_switchchannels()" - }, - { - "label": "TestHandleVoiceJoin_WithQualityOverride()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L592", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicejoin_withqualityoverride", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicejoin_withqualityoverride()" - }, - { - "label": "TestHandleVoiceLeave_BroadcastsToOtherParticipants()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L672", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoiceleave_broadcaststootherparticipants", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoiceleave_broadcaststootherparticipants()" - }, - { - "label": "TestHandleVoiceLeave_ExplicitLeave()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L435", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoiceleave_explicitleave", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoiceleave_explicitleave()" - }, - { - "label": "TestHandleVoiceLeave_NotInVoice()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L470", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoiceleave_notinvoice", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoiceleave_notinvoice()" - }, - { - "label": "TestHandleVoiceMute_FullFlow()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L490", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicemute_fullflow", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicemute_fullflow()" - }, - { - "label": "TestHandleVoiceMute_InvalidPayload()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L63", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicemute_invalidpayload", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicemute_invalidpayload()" - }, - { - "label": "TestHandleVoiceMute_NotInVoice()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L796", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicemute_notinvoice", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicemute_notinvoice()" - }, - { - "label": "TestHandleVoiceScreenshare_FullFlow()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L754", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicescreenshare_fullflow", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicescreenshare_fullflow()" - }, - { - "label": "TestHandleVoiceScreenshare_InvalidPayload()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L182", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicescreenshare_invalidpayload", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicescreenshare_invalidpayload()" - }, - { - "label": "TestHandleVoiceScreenshare_NotInVoice()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L160", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testhandlevoicescreenshare_notinvoice", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testhandlevoicescreenshare_notinvoice()" - }, - { - "label": "TestVoiceState_NotDeliveredToRolesDeniedRead()", - "file_type": "code", - "source_file": "Server/ws/coverage_voice_test.go", - "source_location": "L255", - "_origin": "ast", - "id": "server_ws_coverage_voice_test_testvoicestate_notdeliveredtorolesdeniedread", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testvoicestate_notdeliveredtorolesdeniedread()" - }, - { - "label": "ws/export_test.go", - "file_type": "code", - "source_file": "Server/ws/export_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_export_test", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "ws/export_test.go" - }, - { - "label": "BuildDMChannelOpenForTest()", - "file_type": "code", - "source_file": "Server/ws/export_test.go", - "source_location": "L366", - "_origin": "ast", - "id": "server_ws_export_test_builddmchannelopenfortest", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "builddmchannelopenfortest()" - }, - { - "label": "BuildJSONForTest()", - "file_type": "code", - "source_file": "Server/ws/export_test.go", - "source_location": "L316", - "_origin": "ast", - "id": "server_ws_export_test_buildjsonfortest", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "buildjsonfortest()" - }, - { - "label": "ClearVoiceChIDForTest()", - "file_type": "code", - "source_file": "Server/ws/export_test.go", - "source_location": "L49", - "_origin": "ast", - "id": "server_ws_export_test_clearvoicechidfortest", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "clearvoicechidfortest()" - }, - { - "label": "ClientUserIDForTest()", - "file_type": "code", - "source_file": "Server/ws/export_test.go", - "source_location": "L180", - "_origin": "ast", - "id": "server_ws_export_test_clientuseridfortest", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "clientuseridfortest()" - }, - { - "label": "GetClientE2EEPubKeyForTest()", - "file_type": "code", - "source_file": "Server/ws/export_test.go", - "source_location": "L113", - "_origin": "ast", - "id": "server_ws_export_test_getcliente2eepubkeyfortest", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "getcliente2eepubkeyfortest()" - }, - { - "label": "GetClientVoiceChIDForTest()", - "file_type": "code", - "source_file": "Server/ws/export_test.go", - "source_location": "L291", - "_origin": "ast", - "id": "server_ws_export_test_getclientvoicechidfortest", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "getclientvoicechidfortest()" - }, - { - "label": "GetClientVoiceJoinTokenForTest()", - "file_type": "code", - "source_file": "Server/ws/export_test.go", - "source_location": "L296", - "_origin": "ast", - "id": "server_ws_export_test_getclientvoicejointokenfortest", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "getclientvoicejointokenfortest()" - }, - { - "label": "GetLastActivityForTest()", - "file_type": "code", - "source_file": "Server/ws/export_test.go", - "source_location": "L44", - "_origin": "ast", - "id": "server_ws_export_test_getlastactivityfortest", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "getlastactivityfortest()" - }, - { - "label": "Client", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "server_ws_export_test_go_client", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "client" - }, - { - "label": "LeaveVoiceChannelWithRetryForTest()", - "file_type": "code", - "source_file": "Server/ws/export_test.go", - "source_location": "L209", - "_origin": "ast", - "id": "server_ws_export_test_leavevoicechannelwithretryfortest", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "leavevoicechannelwithretryfortest()" - }, - { - "label": "NewTestClientWithUser()", - "file_type": "code", - "source_file": "Server/ws/export_test.go", - "source_location": "L145", - "_origin": "ast", - "id": "server_ws_export_test_newtestclientwithuser", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "newtestclientwithuser()" - }, - { - "label": "QualityBitrateForTest()", - "file_type": "code", - "source_file": "Server/ws/export_test.go", - "source_location": "L361", - "_origin": "ast", - "id": "server_ws_export_test_qualitybitratefortest", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "qualitybitratefortest()" - }, - { - "label": "SetClientE2EEPubKeyForTest()", - "file_type": "code", - "source_file": "Server/ws/export_test.go", - "source_location": "L108", - "_origin": "ast", - "id": "server_ws_export_test_setcliente2eepubkeyfortest", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "setcliente2eepubkeyfortest()" - }, - { - "label": "SetClientLastActivityForTest()", - "file_type": "code", - "source_file": "Server/ws/export_test.go", - "source_location": "L35", - "_origin": "ast", - "id": "server_ws_export_test_setclientlastactivityfortest", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "setclientlastactivityfortest()" - }, - { - "label": "SetClientVoiceChID()", - "file_type": "code", - "source_file": "Server/ws/export_test.go", - "source_location": "L66", - "_origin": "ast", - "id": "server_ws_export_test_setclientvoicechid", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "setclientvoicechid()" - }, - { - "label": "SetClientVoiceStateForTest()", - "file_type": "code", - "source_file": "Server/ws/export_test.go", - "source_location": "L100", - "_origin": "ast", - "id": "server_ws_export_test_setclientvoicestatefortest", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "setclientvoicestatefortest()" - }, - { - "label": "SetVoiceChIDForTest()", - "file_type": "code", - "source_file": "Server/ws/export_test.go", - "source_location": "L56", - "_origin": "ast", - "id": "server_ws_export_test_setvoicechidfortest", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "setvoicechidfortest()" - }, - { - "label": "TouchForTest()", - "file_type": "code", - "source_file": "Server/ws/export_test.go", - "source_location": "L191", - "_origin": "ast", - "id": "server_ws_export_test_touchfortest", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "touchfortest()" - }, - { - "label": "handler_v2_mark_read_test.go", - "file_type": "code", - "source_file": "Server/ws/handler_v2_mark_read_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_handler_v2_mark_read_test", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "handler_v2_mark_read_test.go" - }, - { - "label": "markReadEnvelope()", - "file_type": "code", - "source_file": "Server/ws/handler_v2_mark_read_test.go", - "source_location": "L19", - "_origin": "ast", - "id": "server_ws_handler_v2_mark_read_test_markreadenvelope", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "markreadenvelope()" - }, - { - "label": "TestMarkRead_AdvancesReadStateWithoutChangingFocus()", - "file_type": "code", - "source_file": "Server/ws/handler_v2_mark_read_test.go", - "source_location": "L27", - "_origin": "ast", - "id": "server_ws_handler_v2_mark_read_test_testmarkread_advancesreadstatewithoutchangingfocus", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testmarkread_advancesreadstatewithoutchangingfocus()" - }, - { - "label": "TestMarkRead_ClearsMentionCount()", - "file_type": "code", - "source_file": "Server/ws/handler_v2_mark_read_test.go", - "source_location": "L69", - "_origin": "ast", - "id": "server_ws_handler_v2_mark_read_test_testmarkread_clearsmentioncount", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testmarkread_clearsmentioncount()" - }, - { - "label": "TestMarkRead_DeniedChannelIsForbidden()", - "file_type": "code", - "source_file": "Server/ws/handler_v2_mark_read_test.go", - "source_location": "L97", - "_origin": "ast", - "id": "server_ws_handler_v2_mark_read_test_testmarkread_deniedchannelisforbidden", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testmarkread_deniedchannelisforbidden()" - }, - { - "label": "TestMarkRead_RejectsInvalidPayload()", - "file_type": "code", - "source_file": "Server/ws/handler_v2_mark_read_test.go", - "source_location": "L115", - "_origin": "ast", - "id": "server_ws_handler_v2_mark_read_test_testmarkread_rejectsinvalidpayload", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testmarkread_rejectsinvalidpayload()" - }, - { - "label": "countVoiceLeaves()", - "file_type": "code", - "source_file": "Server/ws/livekit_test.go", - "source_location": "L419", - "_origin": "ast", - "id": "server_ws_livekit_test_countvoiceleaves", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "countvoiceleaves()" - }, - { - "label": "TestWebhook_ParticipantLeft_ClearsE2EEState_OnMatch()", - "file_type": "code", - "source_file": "Server/ws/livekit_test.go", - "source_location": "L590", - "_origin": "ast", - "id": "server_ws_livekit_test_testwebhook_participantleft_clearse2eestate_onmatch", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testwebhook_participantleft_clearse2eestate_onmatch()" - }, - { - "label": "TestWebhook_ParticipantLeft_LeaverWithoutReadStillNotified()", - "file_type": "code", - "source_file": "Server/ws/livekit_test.go", - "source_location": "L638", - "_origin": "ast", - "id": "server_ws_livekit_test_testwebhook_participantleft_leaverwithoutreadstillnotified", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testwebhook_participantleft_leaverwithoutreadstillnotified()" - }, - { - "label": "TestWebhook_ParticipantLeft_NoDoubleBroadcast_AfterFreshCleanup()", - "file_type": "code", - "source_file": "Server/ws/livekit_test.go", - "source_location": "L441", - "_origin": "ast", - "id": "server_ws_livekit_test_testwebhook_participantleft_nodoublebroadcast_afterfreshcleanup", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testwebhook_participantleft_nodoublebroadcast_afterfreshcleanup()" - }, - { - "label": "TestWebhook_ParticipantLeft_OldToken_DoesNotTeardownReplacement()", - "file_type": "code", - "source_file": "Server/ws/livekit_test.go", - "source_location": "L509", - "_origin": "ast", - "id": "server_ws_livekit_test_testwebhook_participantleft_oldtoken_doesnotteardownreplacement", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testwebhook_participantleft_oldtoken_doesnotteardownreplacement()" - }, - { - "label": "mentions_ready_test.go", - "file_type": "code", - "source_file": "Server/ws/mentions_ready_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_mentions_ready_test", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "mentions_ready_test.go" - }, - { - "label": "TestBuildReady_CarriesMentionCount()", - "file_type": "code", - "source_file": "Server/ws/mentions_ready_test.go", - "source_location": "L76", - "_origin": "ast", - "id": "server_ws_mentions_ready_test_testbuildready_carriesmentioncount", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testbuildready_carriesmentioncount()" - }, - { - "label": "TestBuildReady_MentionCountZeroWithoutReadState()", - "file_type": "code", - "source_file": "Server/ws/mentions_ready_test.go", - "source_location": "L130", - "_origin": "ast", - "id": "server_ws_mentions_ready_test_testbuildready_mentioncountzerowithoutreadstate", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testbuildready_mentioncountzerowithoutreadstate()" - }, - { - "label": "TestChatSend_BroadcastCarriesMentions()", - "file_type": "code", - "source_file": "Server/ws/mentions_ready_test.go", - "source_location": "L18", - "_origin": "ast", - "id": "server_ws_mentions_ready_test_testchatsend_broadcastcarriesmentions", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testchatsend_broadcastcarriesmentions()" - }, - { - "label": "TestPresenceUpdate_InvisibleIsAcceptedAndCarriesCustomStatus()", - "file_type": "code", - "source_file": "Server/ws/presence_invisible_test.go", - "source_location": "L293", - "_origin": "ast", - "id": "server_ws_presence_invisible_test_testpresenceupdate_invisibleisacceptedandcarriescustomstatus", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testpresenceupdate_invisibleisacceptedandcarriescustomstatus()" - }, - { - "label": "TestBuildJSON_ValidValue_ReturnsJSON()", - "file_type": "code", - "source_file": "Server/ws/serve_test.go", - "source_location": "L903", - "_origin": "ast", - "id": "server_ws_serve_test_testbuildjson_validvalue_returnsjson", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "testbuildjson_validvalue_returnsjson()" - }, - { - "label": "TestE2EE_ConcurrentPubKeyAccess()", - "file_type": "code", - "source_file": "Server/ws/voice_e2ee_test.go", - "source_location": "L428", - "_origin": "ast", - "id": "server_ws_voice_e2ee_test_teste2ee_concurrentpubkeyaccess", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "teste2ee_concurrentpubkeyaccess()" - }, - { - "label": "waitRegistered()", - "file_type": "code", - "source_file": "Server/ws/wait_helpers_test.go", - "source_location": "L54", - "_origin": "ast", - "id": "server_ws_wait_helpers_test_waitregistered", - "community": 11, - "community_name": "waitRegistered", - "norm_label": "waitregistered()" - }, - { - "label": "10. Appendix \u2014 session command log index", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L646", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_10_appendix_session_command_log_index", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "10. appendix \u2014 session command log index" - }, - { - "label": "11. Remediation addendum (2026-08-04, same branch)", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L494", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_11_remediation_addendum_2026_08_04_same_branch", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "11. remediation addendum (2026-08-04, same branch)" - }, - { - "label": "12. Closure addendum (2026-08-05, follow-up branch)", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L567", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_12_closure_addendum_2026_08_05_follow_up_branch", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "12. closure addendum (2026-08-05, follow-up branch)" - }, - { - "label": "13. Final closure (2026-08-05, owner-directed)", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L613", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_13_final_closure_2026_08_05_owner_directed", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "13. final closure (2026-08-05, owner-directed)" - }, - { - "label": "1. Executive summary", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L18", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_1_executive_summary", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "1. executive summary" - }, - { - "label": "2. Architecture summary (as verified)", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L50", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_2_architecture_summary_as_verified", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "2. architecture summary (as verified)" - }, - { - "label": "3. Test-run results (this session, at `5630aa1`)", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L95", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_3_test_run_results_this_session_at_5630aa1", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "3. test-run results (this session, at `5630aa1`)" - }, - { - "label": "4. UI/UX flow coverage matrix", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L141", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_4_ui_ux_flow_coverage_matrix", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "4. ui/ux flow coverage matrix" - }, - { - "label": "5. Documentation accuracy findings (fixed in this branch)", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L243", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_5_documentation_accuracy_findings_fixed_in_this_branch", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "5. documentation accuracy findings (fixed in this branch)" - }, - { - "label": "6. Prior-audit & plan reconciliation", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L270", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_6_prior_audit_plan_reconciliation", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "6. prior-audit & plan reconciliation" - }, - { - "label": "7. Dead code & unused dependencies", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L337", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_7_dead_code_unused_dependencies", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "7. dead code & unused dependencies" - }, - { - "label": "8. TODO/FIXME inventory", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L363", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_8_todo_fixme_inventory", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "8. todo/fixme inventory" - }, - { - "label": "9. Prioritized gap list", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L384", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_9_prioritized_gap_list", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "9. prioritized gap list" - }, - { - "label": "audit-2026-04-07.md", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L309", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_audit_2026_04_07_md", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "audit-2026-04-07.md" - }, - { - "label": "audit-2026-07-19.md", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L299", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_audit_2026_07_19_md", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "audit-2026-07-19.md" - }, - { - "label": "audit-2026-08-04.md (security review, same day)", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L272", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_audit_2026_08_04_md_security_review_same_day", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "audit-2026-08-04.md (security review, same day)" - }, - { - "label": "audit-test-coverage-2026-07-25.md", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L288", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_audit_test_coverage_2026_07_25_md", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "audit-test-coverage-2026-07-25.md" - }, - { - "label": "Decisions taken (and why)", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L515", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_decisions_taken_and_why", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "decisions taken (and why)" - }, - { - "label": "docs/plans (11 files \u2014 statuses stamped in C5)", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L321", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_docs_plans_11_files_statuses_stamped_in_c5", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "docs/plans (11 files \u2014 statuses stamped in c5)" - }, - { - "label": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_owncord_audit_documentation_accuracy_ui_ux_test_coverage_2026_08_04", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "owncord audit \u2014 documentation accuracy & ui/ux test coverage (2026-08-04)" - }, - { - "label": "Recommended next steps (ordered)", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L476", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_recommended_next_steps_ordered", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "recommended next steps (ordered)" - }, - { - "label": "Still open after this pass", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L553", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_still_open_after_this_pass", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "still open after this pass" - }, - { - "label": "Still open after this pass", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L601", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_still_open_after_this_pass_601", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "still open after this pass" - }, - { - "label": "UX problems beyond test coverage", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L208", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_ux_problems_beyond_test_coverage", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "ux problems beyond test coverage" - }, - { - "label": "Verification (this session, closure HEAD)", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L587", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_verification_this_session_closure_head", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "verification (this session, closure head)" - }, - { - "label": "Verification (this session, remediation HEAD)", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L533", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_verification_this_session_remediation_head", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "verification (this session, remediation head)" - }, - { - "label": "What shipped", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L501", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_what_shipped", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "what shipped" - }, - { - "label": "What shipped", - "file_type": "document", - "source_file": "docs/audit-2026-08-04-docs-and-coverage.md", - "source_location": "L575", - "_origin": "ast", - "id": "docs_audit_2026_08_04_docs_and_coverage_what_shipped_575", - "community": 110, - "community_name": "OwnCord Audit \u2014 Documentation Accuracy & UI/UX Test Coverage (2026-08-04)", - "norm_label": "what shipped" - }, - { - "label": "scripts", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L6", - "_origin": "ast", - "id": "client_tauri_client_package_scripts", - "community": 111, - "community_name": "scripts", - "norm_label": "scripts" - }, - { - "label": "build", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L8", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_build", - "community": 111, - "community_name": "scripts", - "norm_label": "build" - }, - { - "label": "dev", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L7", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_dev", - "community": 111, - "community_name": "scripts", - "norm_label": "dev" - }, - { - "label": "format", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L28", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_format", - "community": 111, - "community_name": "scripts", - "norm_label": "format" - }, - { - "label": "format:check", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L29", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_format_check", - "community": 111, - "community_name": "scripts", - "norm_label": "format:check" - }, - { - "label": "knip", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L30", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_knip", - "community": 111, - "community_name": "scripts", - "norm_label": "knip" - }, - { - "label": "lint", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L25", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_lint", - "community": 111, - "community_name": "scripts", - "norm_label": "lint" - }, - { - "label": "lint:fix", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L26", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_lint_fix", - "community": 111, - "community_name": "scripts", - "norm_label": "lint:fix" - }, - { - "label": "lint:ox", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L27", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_lint_ox", - "community": 111, - "community_name": "scripts", - "norm_label": "lint:ox" - }, - { - "label": "preview", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L9", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_preview", - "community": 111, - "community_name": "scripts", - "norm_label": "preview" - }, - { - "label": "tauri", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L10", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_tauri", - "community": 111, - "community_name": "scripts", - "norm_label": "tauri" - }, - { - "label": "test", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L11", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_test", - "community": 111, - "community_name": "scripts", - "norm_label": "test" - }, - { - "label": "test:browser", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L21", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_test_browser", - "community": 111, - "community_name": "scripts", - "norm_label": "test:browser" - }, - { - "label": "test:coverage", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L20", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_test_coverage", - "community": 111, - "community_name": "scripts", - "norm_label": "test:coverage" - }, - { - "label": "test:e2e", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L14", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_test_e2e", - "community": 111, - "community_name": "scripts", - "norm_label": "test:e2e" - }, - { - "label": "test:e2e:admin", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L17", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_test_e2e_admin", - "community": 111, - "community_name": "scripts", - "norm_label": "test:e2e:admin" - }, - { - "label": "test:e2e:native", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L16", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_test_e2e_native", - "community": 111, - "community_name": "scripts", - "norm_label": "test:e2e:native" - }, - { - "label": "test:e2e:prod", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L15", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_test_e2e_prod", - "community": 111, - "community_name": "scripts", - "norm_label": "test:e2e:prod" - }, - { - "label": "test:e2e:ui", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L18", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_test_e2e_ui", - "community": 111, - "community_name": "scripts", - "norm_label": "test:e2e:ui" - }, - { - "label": "test:integration", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L13", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_test_integration", - "community": 111, - "community_name": "scripts", - "norm_label": "test:integration" - }, - { - "label": "test:mutate", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L31", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_test_mutate", - "community": 111, - "community_name": "scripts", - "norm_label": "test:mutate" - }, - { - "label": "test:mutate:dry", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L32", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_test_mutate_dry", - "community": 111, - "community_name": "scripts", - "norm_label": "test:mutate:dry" - }, - { - "label": "test:unit", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L12", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_test_unit", - "community": 111, - "community_name": "scripts", - "norm_label": "test:unit" - }, - { - "label": "test:watch", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L19", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_test_watch", - "community": 111, - "community_name": "scripts", - "norm_label": "test:watch" - }, - { - "label": "typecheck", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L22", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_typecheck", - "community": 111, - "community_name": "scripts", - "norm_label": "typecheck" - }, - { - "label": "typecheck:build", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L23", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_typecheck_build", - "community": 111, - "community_name": "scripts", - "norm_label": "typecheck:build" - }, - { - "label": "typecheck:e2e", - "file_type": "code", - "source_file": "Client/tauri-client/package.json", - "source_location": "L24", - "_origin": "ast", - "id": "client_tauri_client_package_scripts_typecheck_e2e", - "community": 111, - "community_name": "scripts", - "norm_label": "typecheck:e2e" - }, - { - "label": "go/ast.File", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_go_ast_file", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "go/ast.file" - }, - { - "label": "go/ast.ImportSpec", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_go_ast_importspec", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "go/ast.importspec" - }, - { - "label": "go/token.FileSet", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_go_token_fileset", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "go/token.fileset" - }, - { - "label": "Rule", - "file_type": "code", - "source_file": "Server/invariants/invariants.go", - "source_location": "L38", - "_origin": "ast", - "id": "invariants_rule", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "rule" - }, - { - "label": ".inScope()", - "file_type": "code", - "source_file": "Server/invariants/invariants.go", - "source_location": "L51", - "_origin": "ast", - "id": "invariants_rule_inscope", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": ".inscope()" - }, - { - "label": "Violation", - "file_type": "code", - "source_file": "Server/invariants/invariants.go", - "source_location": "L26", - "_origin": "ast", - "id": "invariants_violation", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "violation" - }, - { - "label": ".String()", - "file_type": "code", - "source_file": "Server/invariants/invariants.go", - "source_location": "L33", - "_origin": "ast", - "id": "invariants_violation_string", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": ".string()" - }, - { - "label": "invariants.go", - "file_type": "code", - "source_file": "Server/invariants/invariants.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_invariants_invariants", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "invariants.go" - }, - { - "label": "allowIndex()", - "file_type": "code", - "source_file": "Server/invariants/invariants.go", - "source_location": "L79", - "_origin": "ast", - "id": "server_invariants_invariants_allowindex", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "allowindex()" - }, - { - "label": "CheckSource()", - "file_type": "code", - "source_file": "Server/invariants/invariants.go", - "source_location": "L118", - "_origin": "ast", - "id": "server_invariants_invariants_checksource", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "checksource()" - }, - { - "label": "checkSourceWith()", - "file_type": "code", - "source_file": "Server/invariants/invariants.go", - "source_location": "L125", - "_origin": "ast", - "id": "server_invariants_invariants_checksourcewith", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "checksourcewith()" - }, - { - "label": "Run()", - "file_type": "code", - "source_file": "Server/invariants/invariants.go", - "source_location": "L174", - "_origin": "ast", - "id": "server_invariants_invariants_run", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "run()" - }, - { - "label": "invariants_test.go", - "file_type": "code", - "source_file": "Server/invariants/invariants_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_invariants_invariants_test", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "invariants_test.go" - }, - { - "label": "assertScopesCovered()", - "file_type": "code", - "source_file": "Server/invariants/invariants_test.go", - "source_location": "L37", - "_origin": "ast", - "id": "server_invariants_invariants_test_assertscopescovered", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "assertscopescovered()" - }, - { - "label": "TestBuildTagGatedFilesAreStillChecked()", - "file_type": "code", - "source_file": "Server/invariants/invariants_test.go", - "source_location": "L74", - "_origin": "ast", - "id": "server_invariants_invariants_test_testbuildtaggatedfilesarestillchecked", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "testbuildtaggatedfilesarestillchecked()" - }, - { - "label": "TestRuleScopeMatching()", - "file_type": "code", - "source_file": "Server/invariants/invariants_test.go", - "source_location": "L122", - "_origin": "ast", - "id": "server_invariants_invariants_test_testrulescopematching", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "testrulescopematching()" - }, - { - "label": "TestRunExclusions()", - "file_type": "code", - "source_file": "Server/invariants/invariants_test.go", - "source_location": "L91", - "_origin": "ast", - "id": "server_invariants_invariants_test_testrunexclusions", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "testrunexclusions()" - }, - { - "label": "TestServerInvariants()", - "file_type": "code", - "source_file": "Server/invariants/invariants_test.go", - "source_location": "L14", - "_origin": "ast", - "id": "server_invariants_invariants_test_testserverinvariants", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "testserverinvariants()" - }, - { - "label": "syncutil_locks.go", - "file_type": "code", - "source_file": "Server/invariants/syncutil_locks.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_invariants_syncutil_locks", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "syncutil_locks.go" - }, - { - "label": "checkSyncutilLocks()", - "file_type": "code", - "source_file": "Server/invariants/syncutil_locks.go", - "source_location": "L37", - "_origin": "ast", - "id": "server_invariants_syncutil_locks_checksyncutillocks", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "checksyncutillocks()" - }, - { - "label": "syncImportNames()", - "file_type": "code", - "source_file": "Server/invariants/syncutil_locks.go", - "source_location": "L85", - "_origin": "ast", - "id": "server_invariants_syncutil_locks_syncimportnames", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "syncimportnames()" - }, - { - "label": "syncutil_locks_test.go", - "file_type": "code", - "source_file": "Server/invariants/syncutil_locks_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_invariants_syncutil_locks_test", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "syncutil_locks_test.go" - }, - { - "label": "TestSyncutilLocks()", - "file_type": "code", - "source_file": "Server/invariants/syncutil_locks_test.go", - "source_location": "L9", - "_origin": "ast", - "id": "server_invariants_syncutil_locks_test_testsyncutillocks", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "testsyncutillocks()" - }, - { - "label": "TestSyncutilLocksMessageNamesTheFix()", - "file_type": "code", - "source_file": "Server/invariants/syncutil_locks_test.go", - "source_location": "L184", - "_origin": "ast", - "id": "server_invariants_syncutil_locks_test_testsyncutillocksmessagenamesthefix", - "community": 112, - "community_name": "checkSourceWith", - "norm_label": "testsyncutillocksmessagenamesthefix()" - }, - { - "label": "IsDefaultVoiceCredentials()", - "file_type": "code", - "source_file": "Server/config/config.go", - "source_location": "L625", - "_origin": "ast", - "id": "server_config_config_isdefaultvoicecredentials", - "community": 113, - "community_name": "Load", - "norm_label": "isdefaultvoicecredentials()" - }, - { - "label": "Load()", - "file_type": "code", - "source_file": "Server/config/config.go", - "source_location": "L476", - "_origin": "ast", - "id": "server_config_config_load", - "community": 113, - "community_name": "Load", - "norm_label": "load()" - }, - { - "label": "config_test.go", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_config_config_test", - "community": 113, - "community_name": "Load", - "norm_label": "config_test.go" - }, - { - "label": "TestIsDefaultVoiceCredentials()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L418", - "_origin": "ast", - "id": "server_config_config_test_testisdefaultvoicecredentials", - "community": 113, - "community_name": "Load", - "norm_label": "testisdefaultvoicecredentials()" - }, - { - "label": "TestLoadDefaults()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L11", - "_origin": "ast", - "id": "server_config_config_test_testloaddefaults", - "community": 113, - "community_name": "Load", - "norm_label": "testloaddefaults()" - }, - { - "label": "TestLoadEnvironmentVariableOverrides()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L98", - "_origin": "ast", - "id": "server_config_config_test_testloadenvironmentvariableoverrides", - "community": 113, - "community_name": "Load", - "norm_label": "testloadenvironmentvariableoverrides()" - }, - { - "label": "TestLoadEnvOverride_EventPersistence()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L484", - "_origin": "ast", - "id": "server_config_config_test_testloadenvoverride_eventpersistence", - "community": 113, - "community_name": "Load", - "norm_label": "testloadenvoverride_eventpersistence()" - }, - { - "label": "TestLoadEnvOverridesPrecedenceOverYAML()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L315", - "_origin": "ast", - "id": "server_config_config_test_testloadenvoverridesprecedenceoveryaml", - "community": 113, - "community_name": "Load", - "norm_label": "testloadenvoverridesprecedenceoveryaml()" - }, - { - "label": "TestLoadEnvVarNoUnderscore()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L169", - "_origin": "ast", - "id": "server_config_config_test_testloadenvvarnounderscore", - "community": 113, - "community_name": "Load", - "norm_label": "testloadenvvarnounderscore()" - }, - { - "label": "TestLoadEnvVarStorageDir()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L184", - "_origin": "ast", - "id": "server_config_config_test_testloadenvvarstoragedir", - "community": 113, - "community_name": "Load", - "norm_label": "testloadenvvarstoragedir()" - }, - { - "label": "TestLoadGeneratesDefaultFile()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L44", - "_origin": "ast", - "id": "server_config_config_test_testloadgeneratesdefaultfile", - "community": 113, - "community_name": "Load", - "norm_label": "testloadgeneratesdefaultfile()" - }, - { - "label": "TestLoadGitHubToken()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L445", - "_origin": "ast", - "id": "server_config_config_test_testloadgithubtoken", - "community": 113, - "community_name": "Load", - "norm_label": "testloadgithubtoken()" - }, - { - "label": "TestLoadInvalidYAML()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L127", - "_origin": "ast", - "id": "server_config_config_test_testloadinvalidyaml", - "community": 113, - "community_name": "Load", - "norm_label": "testloadinvalidyaml()" - }, - { - "label": "TestLoadMergesYAML()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L59", - "_origin": "ast", - "id": "server_config_config_test_testloadmergesyaml", - "community": 113, - "community_name": "Load", - "norm_label": "testloadmergesyaml()" - }, - { - "label": "TestLoadRestartMode()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L509", - "_origin": "ast", - "id": "server_config_config_test_testloadrestartmode", - "community": 113, - "community_name": "Load", - "norm_label": "testloadrestartmode()" - }, - { - "label": "TestLoadTLSCertAndKeyFields()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L199", - "_origin": "ast", - "id": "server_config_config_test_testloadtlscertandkeyfields", - "community": 113, - "community_name": "Load", - "norm_label": "testloadtlscertandkeyfields()" - }, - { - "label": "TestLoadTLSModeValues()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L144", - "_origin": "ast", - "id": "server_config_config_test_testloadtlsmodevalues", - "community": 113, - "community_name": "Load", - "norm_label": "testloadtlsmodevalues()" - }, - { - "label": "TestLoadUnreadableConfigFile()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L345", - "_origin": "ast", - "id": "server_config_config_test_testloadunreadableconfigfile", - "community": 113, - "community_name": "Load", - "norm_label": "testloadunreadableconfigfile()" - }, - { - "label": "TestLoadUploadBoundaryValues()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L466", - "_origin": "ast", - "id": "server_config_config_test_testloaduploadboundaryvalues", - "community": 113, - "community_name": "Load", - "norm_label": "testloaduploadboundaryvalues()" - }, - { - "label": "TestLoadVoiceAdvertiseInternalIPFromEnv()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L297", - "_origin": "ast", - "id": "server_config_config_test_testloadvoiceadvertiseinternalipfromenv", - "community": 113, - "community_name": "Load", - "norm_label": "testloadvoiceadvertiseinternalipfromenv()" - }, - { - "label": "TestLoadVoiceConfigDefaults()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L229", - "_origin": "ast", - "id": "server_config_config_test_testloadvoiceconfigdefaults", - "community": 113, - "community_name": "Load", - "norm_label": "testloadvoiceconfigdefaults()" - }, - { - "label": "TestLoadVoiceConfigFromYAML()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L259", - "_origin": "ast", - "id": "server_config_config_test_testloadvoiceconfigfromyaml", - "community": 113, - "community_name": "Load", - "norm_label": "testloadvoiceconfigfromyaml()" - }, - { - "label": "TestLoadVoiceDefaultCredentialsCleared()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L361", - "_origin": "ast", - "id": "server_config_config_test_testloadvoicedefaultcredentialscleared", - "community": 113, - "community_name": "Load", - "norm_label": "testloadvoicedefaultcredentialscleared()" - }, - { - "label": "TestLoadVoiceEmptySectionGetsDefaults()", - "file_type": "code", - "source_file": "Server/config/config_test.go", - "source_location": "L388", - "_origin": "ast", - "id": "server_config_config_test_testloadvoiceemptysectiongetsdefaults", - "community": 113, - "community_name": "Load", - "norm_label": "testloadvoiceemptysectiongetsdefaults()" - }, - { - "label": "handler_v2_voice_e2ee_test.go", - "file_type": "code", - "source_file": "Server/ws/handler_v2_voice_e2ee_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_handler_v2_voice_e2ee_test", - "community": 114, - "community_name": "handleVoiceE2EEAnnounceV2", - "norm_label": "handler_v2_voice_e2ee_test.go" - }, - { - "label": "TestVoiceE2EEAnnounceV2_EmptyPublicKey()", - "file_type": "code", - "source_file": "Server/ws/handler_v2_voice_e2ee_test.go", - "source_location": "L67", - "_origin": "ast", - "id": "server_ws_handler_v2_voice_e2ee_test_testvoicee2eeannouncev2_emptypublickey", - "community": 114, - "community_name": "handleVoiceE2EEAnnounceV2", - "norm_label": "testvoicee2eeannouncev2_emptypublickey()" - }, - { - "label": "TestVoiceE2EEAnnounceV2_HappyPath()", - "file_type": "code", - "source_file": "Server/ws/handler_v2_voice_e2ee_test.go", - "source_location": "L13", - "_origin": "ast", - "id": "server_ws_handler_v2_voice_e2ee_test_testvoicee2eeannouncev2_happypath", - "community": 114, - "community_name": "handleVoiceE2EEAnnounceV2", - "norm_label": "testvoicee2eeannouncev2_happypath()" - }, - { - "label": "TestVoiceE2EEAnnounceV2_InvalidBase64()", - "file_type": "code", - "source_file": "Server/ws/handler_v2_voice_e2ee_test.go", - "source_location": "L106", - "_origin": "ast", - "id": "server_ws_handler_v2_voice_e2ee_test_testvoicee2eeannouncev2_invalidbase64", - "community": 114, - "community_name": "handleVoiceE2EEAnnounceV2", - "norm_label": "testvoicee2eeannouncev2_invalidbase64()" - }, - { - "label": "TestVoiceE2EEAnnounceV2_NoReply()", - "file_type": "code", - "source_file": "Server/ws/handler_v2_voice_e2ee_test.go", - "source_location": "L125", - "_origin": "ast", - "id": "server_ws_handler_v2_voice_e2ee_test_testvoicee2eeannouncev2_noreply", - "community": 114, - "community_name": "handleVoiceE2EEAnnounceV2", - "norm_label": "testvoicee2eeannouncev2_noreply()" - }, - { - "label": "TestVoiceE2EEAnnounceV2_NoSignature_LegacyAccepted()", - "file_type": "code", - "source_file": "Server/ws/handler_v2_voice_e2ee_test.go", - "source_location": "L168", - "_origin": "ast", - "id": "server_ws_handler_v2_voice_e2ee_test_testvoicee2eeannouncev2_nosignature_legacyaccepted", - "community": 114, - "community_name": "handleVoiceE2EEAnnounceV2", - "norm_label": "testvoicee2eeannouncev2_nosignature_legacyaccepted()" - }, - { - "label": "TestVoiceE2EEAnnounceV2_NotInVoiceChannel()", - "file_type": "code", - "source_file": "Server/ws/handler_v2_voice_e2ee_test.go", - "source_location": "L48", - "_origin": "ast", - "id": "server_ws_handler_v2_voice_e2ee_test_testvoicee2eeannouncev2_notinvoicechannel", - "community": 114, - "community_name": "handleVoiceE2EEAnnounceV2", - "norm_label": "testvoicee2eeannouncev2_notinvoicechannel()" - }, - { - "label": "TestVoiceE2EEAnnounceV2_PublicKeyTooLarge()", - "file_type": "code", - "source_file": "Server/ws/handler_v2_voice_e2ee_test.go", - "source_location": "L86", - "_origin": "ast", - "id": "server_ws_handler_v2_voice_e2ee_test_testvoicee2eeannouncev2_publickeytoolarge", - "community": 114, - "community_name": "handleVoiceE2EEAnnounceV2", - "norm_label": "testvoicee2eeannouncev2_publickeytoolarge()" - }, - { - "label": "TestVoiceE2EEAnnounceV2_SignatureInvalidBase64()", - "file_type": "code", - "source_file": "Server/ws/handler_v2_voice_e2ee_test.go", - "source_location": "L187", - "_origin": "ast", - "id": "server_ws_handler_v2_voice_e2ee_test_testvoicee2eeannouncev2_signatureinvalidbase64", - "community": 114, - "community_name": "handleVoiceE2EEAnnounceV2", - "norm_label": "testvoicee2eeannouncev2_signatureinvalidbase64()" - }, - { - "label": "TestVoiceE2EEAnnounceV2_SignatureStored()", - "file_type": "code", - "source_file": "Server/ws/handler_v2_voice_e2ee_test.go", - "source_location": "L142", - "_origin": "ast", - "id": "server_ws_handler_v2_voice_e2ee_test_testvoicee2eeannouncev2_signaturestored", - "community": 114, - "community_name": "handleVoiceE2EEAnnounceV2", - "norm_label": "testvoicee2eeannouncev2_signaturestored()" - }, - { - "label": "TestVoiceE2EEAnnounceV2_SignatureTooLarge()", - "file_type": "code", - "source_file": "Server/ws/handler_v2_voice_e2ee_test.go", - "source_location": "L209", - "_origin": "ast", - "id": "server_ws_handler_v2_voice_e2ee_test_testvoicee2eeannouncev2_signaturetoolarge", - "community": 114, - "community_name": "handleVoiceE2EEAnnounceV2", - "norm_label": "testvoicee2eeannouncev2_signaturetoolarge()" - }, - { - "label": "voice_e2ee.go", - "file_type": "code", - "source_file": "Server/ws/voice_e2ee.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_voice_e2ee", - "community": 114, - "community_name": "handleVoiceE2EEAnnounceV2", - "norm_label": "voice_e2ee.go" - }, - { - "label": "handleVoiceE2EEAnnounceV2()", - "file_type": "code", - "source_file": "Server/ws/voice_e2ee.go", - "source_location": "L102", - "_origin": "ast", - "id": "server_ws_voice_e2ee_handlevoicee2eeannouncev2", - "community": 114, - "community_name": "handleVoiceE2EEAnnounceV2", - "norm_label": "handlevoicee2eeannouncev2()" - }, - { - "label": "validateBase64Loose()", - "file_type": "code", - "source_file": "Server/ws/voice_e2ee.go", - "source_location": "L32", - "_origin": "ast", - "id": "server_ws_voice_e2ee_validatebase64loose", - "community": 114, - "community_name": "handleVoiceE2EEAnnounceV2", - "norm_label": "validatebase64loose()" - }, - { - "label": "admin.go", - "file_type": "code", - "source_file": "Server/admin/admin.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_admin_admin", - "community": 115, - "community_name": "NewHandler", - "norm_label": "admin.go" - }, - { - "label": "admin_handler_test.go", - "file_type": "code", - "source_file": "Server/admin/admin_handler_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_admin_admin_handler_test", - "community": 115, - "community_name": "NewHandler", - "norm_label": "admin_handler_test.go" - }, - { - "label": "TestNewHandler_APIRoutesMounted()", - "file_type": "code", - "source_file": "Server/admin/admin_handler_test.go", - "source_location": "L78", - "_origin": "ast", - "id": "server_admin_admin_handler_test_testnewhandler_apiroutesmounted", - "community": 115, - "community_name": "NewHandler", - "norm_label": "testnewhandler_apiroutesmounted()" - }, - { - "label": "TestNewHandler_AuthProtectedRoute()", - "file_type": "code", - "source_file": "Server/admin/admin_handler_test.go", - "source_location": "L94", - "_origin": "ast", - "id": "server_admin_admin_handler_test_testnewhandler_authprotectedroute", - "community": 115, - "community_name": "NewHandler", - "norm_label": "testnewhandler_authprotectedroute()" - }, - { - "label": "TestNewHandler_ReturnsNonNilHandler()", - "file_type": "code", - "source_file": "Server/admin/admin_handler_test.go", - "source_location": "L21", - "_origin": "ast", - "id": "server_admin_admin_handler_test_testnewhandler_returnsnonnilhandler", - "community": 115, - "community_name": "NewHandler", - "norm_label": "testnewhandler_returnsnonnilhandler()" - }, - { - "label": "TestNewHandler_ServesStaticRoot()", - "file_type": "code", - "source_file": "Server/admin/admin_handler_test.go", - "source_location": "L31", - "_origin": "ast", - "id": "server_admin_admin_handler_test_testnewhandler_servesstaticroot", - "community": 115, - "community_name": "NewHandler", - "norm_label": "testnewhandler_servesstaticroot()" - }, - { - "label": "TestNewHandler_SetsCSPOnRoot()", - "file_type": "code", - "source_file": "Server/admin/admin_handler_test.go", - "source_location": "L62", - "_origin": "ast", - "id": "server_admin_admin_handler_test_testnewhandler_setscsponroot", - "community": 115, - "community_name": "NewHandler", - "norm_label": "testnewhandler_setscsponroot()" - }, - { - "label": "TestNewHandler_WithUpdater()", - "file_type": "code", - "source_file": "Server/admin/admin_handler_test.go", - "source_location": "L110", - "_origin": "ast", - "id": "server_admin_admin_handler_test_testnewhandler_withupdater", - "community": 115, - "community_name": "NewHandler", - "norm_label": "testnewhandler_withupdater()" - }, - { - "label": "TestOwnerOnlyMiddleware_AdminDenied()", - "file_type": "code", - "source_file": "Server/admin/admin_handler_test.go", - "source_location": "L158", - "_origin": "ast", - "id": "server_admin_admin_handler_test_testowneronlymiddleware_admindenied", - "community": 115, - "community_name": "NewHandler", - "norm_label": "testowneronlymiddleware_admindenied()" - }, - { - "label": "TestOwnerOnlyMiddleware_MemberDenied()", - "file_type": "code", - "source_file": "Server/admin/admin_handler_test.go", - "source_location": "L176", - "_origin": "ast", - "id": "server_admin_admin_handler_test_testowneronlymiddleware_memberdenied", - "community": 115, - "community_name": "NewHandler", - "norm_label": "testowneronlymiddleware_memberdenied()" - }, - { - "label": "TestOwnerOnlyMiddleware_OwnerAllowed()", - "file_type": "code", - "source_file": "Server/admin/admin_handler_test.go", - "source_location": "L123", - "_origin": "ast", - "id": "server_admin_admin_handler_test_testowneronlymiddleware_ownerallowed", - "community": 115, - "community_name": "NewHandler", - "norm_label": "testowneronlymiddleware_ownerallowed()" - }, - { - "label": "TestOwnerOnlyMiddleware_Unauthenticated()", - "file_type": "code", - "source_file": "Server/admin/admin_handler_test.go", - "source_location": "L193", - "_origin": "ast", - "id": "server_admin_admin_handler_test_testowneronlymiddleware_unauthenticated", - "community": 115, - "community_name": "NewHandler", - "norm_label": "testowneronlymiddleware_unauthenticated()" - }, - { - "label": "NewHandler()", - "file_type": "code", - "source_file": "Server/admin/admin.go", - "source_location": "L26", - "_origin": "ast", - "id": "server_admin_admin_newhandler", - "community": 115, - "community_name": "NewHandler", - "norm_label": "newhandler()" - }, - { - "label": "createMemberUser()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L221", - "_origin": "ast", - "id": "server_admin_api_test_creatememberuser", - "community": 115, - "community_name": "NewHandler", - "norm_label": "creatememberuser()" - }, - { - "label": "TestAdminAPI_Stats_Forbidden()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L297", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_stats_forbidden", - "community": 115, - "community_name": "NewHandler", - "norm_label": "testadminapi_stats_forbidden()" - }, - { - "label": "backup_maintenance_test.go", - "file_type": "code", - "source_file": "Server/admin/backup_maintenance_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_admin_backup_maintenance_test", - "community": 115, - "community_name": "NewHandler", - "norm_label": "backup_maintenance_test.go" - }, - { - "label": "backdate()", - "file_type": "code", - "source_file": "Server/admin/backup_maintenance_test.go", - "source_location": "L32", - "_origin": "ast", - "id": "server_admin_backup_maintenance_test_backdate", - "community": 115, - "community_name": "NewHandler", - "norm_label": "backdate()" - }, - { - "label": "listBackupFiles()", - "file_type": "code", - "source_file": "Server/admin/backup_maintenance_test.go", - "source_location": "L14", - "_origin": "ast", - "id": "server_admin_backup_maintenance_test_listbackupfiles", - "community": 115, - "community_name": "NewHandler", - "norm_label": "listbackupfiles()" - }, - { - "label": "mustSetSetting()", - "file_type": "code", - "source_file": "Server/admin/backup_maintenance_test.go", - "source_location": "L144", - "_origin": "ast", - "id": "server_admin_backup_maintenance_test_mustsetsetting", - "community": 115, - "community_name": "NewHandler", - "norm_label": "mustsetsetting()" - }, - { - "label": "TestMaintainBackups_RetentionNeverDeletesNewest()", - "file_type": "code", - "source_file": "Server/admin/backup_maintenance_test.go", - "source_location": "L114", - "_origin": "ast", - "id": "server_admin_backup_maintenance_test_testmaintainbackups_retentionneverdeletesnewest", - "community": 115, - "community_name": "NewHandler", - "norm_label": "testmaintainbackups_retentionneverdeletesnewest()" - }, - { - "label": "TestMaintainBackups_ScheduleAndRetention()", - "file_type": "code", - "source_file": "Server/admin/backup_maintenance_test.go", - "source_location": "L44", - "_origin": "ast", - "id": "server_admin_backup_maintenance_test_testmaintainbackups_scheduleandretention", - "community": 115, - "community_name": "NewHandler", - "norm_label": "testmaintainbackups_scheduleandretention()" - }, - { - "label": "SetBackupBaseDir()", - "file_type": "code", - "source_file": "Server/admin/export_test.go", - "source_location": "L49", - "_origin": "ast", - "id": "server_admin_export_test_setbackupbasedir", - "community": 115, - "community_name": "NewHandler", - "norm_label": "setbackupbasedir()" - }, - { - "label": "emit_presence_others_priority_test.go", - "file_type": "code", - "source_file": "Server/ws/emit_presence_others_priority_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_emit_presence_others_priority_test", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "emit_presence_others_priority_test.go" - }, - { - "label": "TestEmitEvents_PresenceOthersEvent_UsesNormalPriorityQueue()", - "file_type": "code", - "source_file": "Server/ws/emit_presence_others_priority_test.go", - "source_location": "L34", - "_origin": "ast", - "id": "server_ws_emit_presence_others_priority_test_testemitevents_presenceothersevent_usesnormalpriorityqueue", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "testemitevents_presenceothersevent_usesnormalpriorityqueue()" - }, - { - "label": "emit_presence_priority_test.go", - "file_type": "code", - "source_file": "Server/ws/emit_presence_priority_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_emit_presence_priority_test", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "emit_presence_priority_test.go" - }, - { - "label": "TestEmitEvents_PresenceEvent_UsesNormalPriorityQueue()", - "file_type": "code", - "source_file": "Server/ws/emit_presence_priority_test.go", - "source_location": "L28", - "_origin": "ast", - "id": "server_ws_emit_presence_priority_test_testemitevents_presenceevent_usesnormalpriorityqueue", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "testemitevents_presenceevent_usesnormalpriorityqueue()" - }, - { - "label": "emit_presence_self_priority_test.go", - "file_type": "code", - "source_file": "Server/ws/emit_presence_self_priority_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_emit_presence_self_priority_test", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "emit_presence_self_priority_test.go" - }, - { - "label": "TestEmitEvents_PresenceSelfEvent_UsesNormalPriorityQueue()", - "file_type": "code", - "source_file": "Server/ws/emit_presence_self_priority_test.go", - "source_location": "L30", - "_origin": "ast", - "id": "server_ws_emit_presence_self_priority_test_testemitevents_presenceselfevent_usesnormalpriorityqueue", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "testemitevents_presenceselfevent_usesnormalpriorityqueue()" - }, - { - "label": "emit_test.go", - "file_type": "code", - "source_file": "Server/ws/emit_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_emit_test", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "emit_test.go" - }, - { - "label": "drainChan()", - "file_type": "code", - "source_file": "Server/ws/emit_test.go", - "source_location": "L11", - "_origin": "ast", - "id": "server_ws_emit_test_drainchan", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "drainchan()" - }, - { - "label": "Hub", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "server_ws_emit_test_go_hub", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "hub" - }, - { - "label": "newEmitTestHub()", - "file_type": "code", - "source_file": "Server/ws/emit_test.go", - "source_location": "L28", - "_origin": "ast", - "id": "server_ws_emit_test_newemittesthub", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "newemittesthub()" - }, - { - "label": "registerEmitTestClient()", - "file_type": "code", - "source_file": "Server/ws/emit_test.go", - "source_location": "L43", - "_origin": "ast", - "id": "server_ws_emit_test_registeremittestclient", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "registeremittestclient()" - }, - { - "label": "registerEmitTestVoiceClient()", - "file_type": "code", - "source_file": "Server/ws/emit_test.go", - "source_location": "L61", - "_origin": "ast", - "id": "server_ws_emit_test_registeremittestvoiceclient", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "registeremittestvoiceclient()" - }, - { - "label": "TestEmitEvents_BroadcastAllEvent()", - "file_type": "code", - "source_file": "Server/ws/emit_test.go", - "source_location": "L255", - "_origin": "ast", - "id": "server_ws_emit_test_testemitevents_broadcastallevent", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "testemitevents_broadcastallevent()" - }, - { - "label": "TestEmitEvents_ChannelEvent_CallsBroadcastToChannel()", - "file_type": "code", - "source_file": "Server/ws/emit_test.go", - "source_location": "L160", - "_origin": "ast", - "id": "server_ws_emit_test_testemitevents_channelevent_callsbroadcasttochannel", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "testemitevents_channelevent_callsbroadcasttochannel()" - }, - { - "label": "TestEmitEvents_EmptyEvents_NoOp()", - "file_type": "code", - "source_file": "Server/ws/emit_test.go", - "source_location": "L363", - "_origin": "ast", - "id": "server_ws_emit_test_testemitevents_emptyevents_noop", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "testemitevents_emptyevents_noop()" - }, - { - "label": "TestEmitEvents_ExcludeSenderEvent()", - "file_type": "code", - "source_file": "Server/ws/emit_test.go", - "source_location": "L182", - "_origin": "ast", - "id": "server_ws_emit_test_testemitevents_excludesenderevent", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "testemitevents_excludesenderevent()" - }, - { - "label": "TestEmitEvents_MixedEventTypes_AllRouted()", - "file_type": "code", - "source_file": "Server/ws/emit_test.go", - "source_location": "L372", - "_origin": "ast", - "id": "server_ws_emit_test_testemitevents_mixedeventtypes_allrouted", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "testemitevents_mixedeventtypes_allrouted()" - }, - { - "label": "TestEmitEvents_SequencedDMEvent()", - "file_type": "code", - "source_file": "Server/ws/emit_test.go", - "source_location": "L204", - "_origin": "ast", - "id": "server_ws_emit_test_testemitevents_sequenceddmevent", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "testemitevents_sequenceddmevent()" - }, - { - "label": "TestEmitEvents_UnknownType_LogsWarning()", - "file_type": "code", - "source_file": "Server/ws/emit_test.go", - "source_location": "L399", - "_origin": "ast", - "id": "server_ws_emit_test_testemitevents_unknowntype_logswarning", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "testemitevents_unknowntype_logswarning()" - }, - { - "label": "TestEmitEvents_UserTargetedEvent()", - "file_type": "code", - "source_file": "Server/ws/emit_test.go", - "source_location": "L234", - "_origin": "ast", - "id": "server_ws_emit_test_testemitevents_usertargetedevent", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "testemitevents_usertargetedevent()" - }, - { - "label": "TestEmitEvents_VoiceChannelEvent()", - "file_type": "code", - "source_file": "Server/ws/emit_test.go", - "source_location": "L280", - "_origin": "ast", - "id": "server_ws_emit_test_testemitevents_voicechannelevent", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "testemitevents_voicechannelevent()" - }, - { - "label": "TestEmitEvents_VoiceChannelGuardedEvent()", - "file_type": "code", - "source_file": "Server/ws/emit_test.go", - "source_location": "L310", - "_origin": "ast", - "id": "server_ws_emit_test_testemitevents_voicechannelguardedevent", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "testemitevents_voicechannelguardedevent()" - }, - { - "label": "TestEmitEvents_VoiceChannelGuardedEvent_TargetNotInChannel()", - "file_type": "code", - "source_file": "Server/ws/emit_test.go", - "source_location": "L343", - "_origin": "ast", - "id": "server_ws_emit_test_testemitevents_voicechannelguardedevent_targetnotinchannel", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "testemitevents_voicechannelguardedevent_targetnotinchannel()" - }, - { - "label": "TestFinishVoiceLeave_EvictedUserAlwaysInAudience()", - "file_type": "code", - "source_file": "Server/ws/voice_audience_test.go", - "source_location": "L66", - "_origin": "ast", - "id": "server_ws_voice_audience_test_testfinishvoiceleave_evicteduseralwaysinaudience", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "testfinishvoiceleave_evicteduseralwaysinaudience()" - }, - { - "label": "stubUnknownEvent", - "file_type": "code", - "source_file": "Server/ws/emit_test.go", - "source_location": "L154", - "_origin": "ast", - "id": "ws_stubunknownevent", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": "stubunknownevent" - }, - { - "label": ".EventType()", - "file_type": "code", - "source_file": "Server/ws/emit_test.go", - "source_location": "L156", - "_origin": "ast", - "id": "ws_stubunknownevent_eventtype", - "community": 116, - "community_name": "newEmitTestHub", - "norm_label": ".eventtype()" - }, - { - "label": "security-hardening-remediation.md", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "security-hardening-remediation.md" - }, - { - "label": "Cross-cutting requirements", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L296", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_cross_cutting_requirements", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "cross-cutting requirements" - }, - { - "label": "Non-goals", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L49", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_non_goals", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "non-goals" - }, - { - "label": "Plan: Remediate security-hardening review regressions", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_plan_remediate_security_hardening_review_regressions", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "plan: remediate security-hardening review regressions" - }, - { - "label": "Sequencing", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L289", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_sequencing", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "sequencing" - }, - { - "label": "W1-1. Plugin CPU budget must not permanently brick the module", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L61", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_w1_1_plugin_cpu_budget_must_not_permanently_brick_the_module", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "w1-1. plugin cpu budget must not permanently brick the module" - }, - { - "label": "W1-2. E2EE key rotation drops peers in 7+ participant calls", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L82", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_w1_2_e2ee_key_rotation_drops_peers_in_7_participant_calls", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "w1-2. e2ee key rotation drops peers in 7+ participant calls" - }, - { - "label": "W1-3. Attachment-ownership check breaks Postgres and isn't atomic", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L102", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_w1_3_attachment_ownership_check_breaks_postgres_and_isn_t_atomic", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "w1-3. attachment-ownership check breaks postgres and isn't atomic" - }, - { - "label": "W1-4. Ban authorization guards dead code", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L125", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_w1_4_ban_authorization_guards_dead_code", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "w1-4. ban authorization guards dead code" - }, - { - "label": "W2-1. Client-update rate limiter shares the auth bucket", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L146", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_w2_1_client_update_rate_limiter_shares_the_auth_bucket", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "w2-1. client-update rate limiter shares the auth bucket" - }, - { - "label": "W2-2. ChangePassword reports failure after the password is committed", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L158", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_w2_2_changepassword_reports_failure_after_the_password_is_committed", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "w2-2. changepassword reports failure after the password is committed" - }, - { - "label": "W2-3. Plugin activation via RegisterCommand breaks in-place upgrades", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L175", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_w2_3_plugin_activation_via_registercommand_breaks_in_place_upgrades", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "w2-3. plugin activation via registercommand breaks in-place upgrades" - }, - { - "label": "W2-4. Attachment check rejects legit retries and legacy uploads", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L194", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_w2_4_attachment_check_rejects_legit_retries_and_legacy_uploads", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "w2-4. attachment check rejects legit retries and legacy uploads" - }, - { - "label": "W2-5. XFF right-to-left walk collapses/spoofs on broad trusted CIDRs", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L204", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_w2_5_xff_right_to_left_walk_collapses_spoofs_on_broad_trusted_cidrs", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "w2-5. xff right-to-left walk collapses/spoofs on broad trusted cidrs" - }, - { - "label": "W2-6. SSRF-hardened dialer loses multi-address fallback", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L221", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_w2_6_ssrf_hardened_dialer_loses_multi_address_fallback", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "w2-6. ssrf-hardened dialer loses multi-address fallback" - }, - { - "label": "W2-7. Plugin-broadcast gate omits the block check", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L235", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_w2_7_plugin_broadcast_gate_omits_the_block_check", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "w2-7. plugin-broadcast gate omits the block check" - }, - { - "label": "W3-1. Updater text-asset cache: add coalescing + negative caching", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L252", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_w3_1_updater_text_asset_cache_add_coalescing_negative_caching", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "w3-1. updater text-asset cache: add coalescing + negative caching" - }, - { - "label": "W3-2. De-duplicate the update binary hashing", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L259", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_w3_2_de_duplicate_the_update_binary_hashing", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "w3-2. de-duplicate the update binary hashing" - }, - { - "label": "W3-3. Update TOCTOU guard depth + XFF CIDR pre-parsing", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L266", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_w3_3_update_toctou_guard_depth_xff_cidr_pre_parsing", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "w3-3. update toctou guard depth + xff cidr pre-parsing" - }, - { - "label": "W3-4. Cache-Control header contradiction", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L275", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_w3_4_cache_control_header_contradiction", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "w3-4. cache-control header contradiction" - }, - { - "label": "W3-5. Restore test coverage lost to the MemStore change", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L282", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_w3_5_restore_test_coverage_lost_to_the_memstore_change", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "w3-5. restore test coverage lost to the memstore change" - }, - { - "label": "Wave 1 \u2014 Availability & backend-breaking (HIGH)", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L59", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_wave_1_availability_backend_breaking_high", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "wave 1 \u2014 availability & backend-breaking (high)" - }, - { - "label": "Wave 2 \u2014 Behavioral regressions (MED-HIGH \u2192 MED)", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L144", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_wave_2_behavioral_regressions_med_high_med", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "wave 2 \u2014 behavioral regressions (med-high \u2192 med)" - }, - { - "label": "Wave 3 \u2014 Cleanup, efficiency, hardening depth (LOW-MED)", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L250", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_wave_3_cleanup_efficiency_hardening_depth_low_med", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "wave 3 \u2014 cleanup, efficiency, hardening depth (low-med)" - }, - { - "label": "Why", - "file_type": "document", - "source_file": "docs/plans/security-hardening-remediation.md", - "source_location": "L31", - "_origin": "ast", - "id": "docs_plans_security_hardening_remediation_why", - "community": 117, - "community_name": "Plan: Remediate security-hardening review regressions", - "norm_label": "why" - }, - { - "label": "aead.dev/minisign.PublicKey", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_aead_dev_minisign_publickey", - "community": 118, - "community_name": "verify.go", - "norm_label": "aead.dev/minisign.publickey" - }, - { - "label": "os.File", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_os_file", - "community": 118, - "community_name": "verify.go", - "norm_label": "os.file" - }, - { - "label": "TestEnsureVPrefix()", - "file_type": "code", - "source_file": "Server/updater/coverage_boost_test.go", - "source_location": "L172", - "_origin": "ast", - "id": "server_updater_coverage_boost_test_testensurevprefix", - "community": 118, - "community_name": "verify.go", - "norm_label": "testensurevprefix()" - }, - { - "label": "ensureVPrefix()", - "file_type": "code", - "source_file": "Server/updater/updater.go", - "source_location": "L118", - "_origin": "ast", - "id": "server_updater_updater_ensurevprefix", - "community": 118, - "community_name": "verify.go", - "norm_label": "ensurevprefix()" - }, - { - "label": "TestOpenVerifiedBinary_CommitHappyPath()", - "file_type": "code", - "source_file": "Server/updater/updater_test.go", - "source_location": "L1301", - "_origin": "ast", - "id": "server_updater_updater_test_testopenverifiedbinary_commithappypath", - "community": 118, - "community_name": "verify.go", - "norm_label": "testopenverifiedbinary_commithappypath()" - }, - { - "label": "TestOpenVerifiedBinary_SwapAfterVerifyDetectedAtCommit()", - "file_type": "code", - "source_file": "Server/updater/updater_test.go", - "source_location": "L1350", - "_origin": "ast", - "id": "server_updater_updater_test_testopenverifiedbinary_swapafterverifydetectedatcommit", - "community": 118, - "community_name": "verify.go", - "norm_label": "testopenverifiedbinary_swapafterverifydetectedatcommit()" - }, - { - "label": "TestOpenVerifiedBinary_WrongHash()", - "file_type": "code", - "source_file": "Server/updater/updater_test.go", - "source_location": "L1332", - "_origin": "ast", - "id": "server_updater_updater_test_testopenverifiedbinary_wronghash", - "community": 118, - "community_name": "verify.go", - "norm_label": "testopenverifiedbinary_wronghash()" - }, - { - "label": "verify.go", - "file_type": "code", - "source_file": "Server/updater/verify.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_updater_verify", - "community": 118, - "community_name": "verify.go", - "norm_label": "verify.go" - }, - { - "label": "fileSHA256()", - "file_type": "code", - "source_file": "Server/updater/verify.go", - "source_location": "L186", - "_origin": "ast", - "id": "server_updater_verify_filesha256", - "community": 118, - "community_name": "verify.go", - "norm_label": "filesha256()" - }, - { - "label": "Updater", - "file_type": "code", - "source_file": "Server/updater/verify.go", - "source_location": "L59", - "_origin": "ast", - "id": "server_updater_verify_go_updater_updater", - "community": 118, - "community_name": "verify.go", - "norm_label": "updater" - }, - { - "label": "normalizeSignatureText()", - "file_type": "code", - "source_file": "Server/updater/verify.go", - "source_location": "L153", - "_origin": "ast", - "id": "server_updater_verify_normalizesignaturetext", - "community": 118, - "community_name": "verify.go", - "norm_label": "normalizesignaturetext()" - }, - { - "label": "OpenVerifiedBinary()", - "file_type": "code", - "source_file": "Server/updater/verify.go", - "source_location": "L223", - "_origin": "ast", - "id": "server_updater_verify_openverifiedbinary", - "community": 118, - "community_name": "verify.go", - "norm_label": "openverifiedbinary()" - }, - { - "label": "readerSHA256()", - "file_type": "code", - "source_file": "Server/updater/verify.go", - "source_location": "L177", - "_origin": "ast", - "id": "server_updater_verify_readersha256", - "community": 118, - "community_name": "verify.go", - "norm_label": "readersha256()" - }, - { - "label": "releaseManifest", - "file_type": "code", - "source_file": "Server/updater/verify.go", - "source_location": "L29", - "_origin": "ast", - "id": "updater_releasemanifest", - "community": 118, - "community_name": "verify.go", - "norm_label": "releasemanifest" - }, - { - "label": "releaseManifestAsset", - "file_type": "code", - "source_file": "Server/updater/verify.go", - "source_location": "L41", - "_origin": "ast", - "id": "updater_releasemanifestasset", - "community": 118, - "community_name": "verify.go", - "norm_label": "releasemanifestasset" - }, - { - "label": "StagedBinary", - "file_type": "code", - "source_file": "Server/updater/verify.go", - "source_location": "L214", - "_origin": "ast", - "id": "updater_stagedbinary", - "community": 118, - "community_name": "verify.go", - "norm_label": "stagedbinary" - }, - { - "label": ".Close()", - "file_type": "code", - "source_file": "Server/updater/verify.go", - "source_location": "L277", - "_origin": "ast", - "id": "updater_stagedbinary_close", - "community": 118, - "community_name": "verify.go", - "norm_label": ".close()" - }, - { - "label": ".Commit()", - "file_type": "code", - "source_file": "Server/updater/verify.go", - "source_location": "L246", - "_origin": "ast", - "id": "updater_stagedbinary_commit", - "community": 118, - "community_name": "verify.go", - "norm_label": ".commit()" - }, - { - "label": ".ParseChecksumFile()", - "file_type": "code", - "source_file": "Server/updater/verify.go", - "source_location": "L287", - "_origin": "ast", - "id": "updater_updater_parsechecksumfile", - "community": 118, - "community_name": "verify.go", - "norm_label": ".parsechecksumfile()" - }, - { - "label": ".parseChecksumFileAny()", - "file_type": "code", - "source_file": "Server/updater/verify.go", - "source_location": "L59", - "_origin": "ast", - "id": "updater_updater_parsechecksumfileany", - "community": 118, - "community_name": "verify.go", - "norm_label": ".parsechecksumfileany()" - }, - { - "label": ".serverSignaturePublicKey()", - "file_type": "code", - "source_file": "Server/updater/verify.go", - "source_location": "L164", - "_origin": "ast", - "id": "updater_updater_serversignaturepublickey", - "community": 118, - "community_name": "verify.go", - "norm_label": ".serversignaturepublickey()" - }, - { - "label": ".VerifyChecksum()", - "file_type": "code", - "source_file": "Server/updater/verify.go", - "source_location": "L198", - "_origin": "ast", - "id": "updater_updater_verifychecksum", - "community": 118, - "community_name": "verify.go", - "norm_label": ".verifychecksum()" - }, - { - "label": ".VerifyReleaseManifest()", - "file_type": "code", - "source_file": "Server/updater/verify.go", - "source_location": "L71", - "_origin": "ast", - "id": "updater_updater_verifyreleasemanifest", - "community": 118, - "community_name": "verify.go", - "norm_label": ".verifyreleasemanifest()" - }, - { - "label": ".VerifySignature()", - "file_type": "code", - "source_file": "Server/updater/verify.go", - "source_location": "L116", - "_origin": "ast", - "id": "updater_updater_verifysignature", - "community": 118, - "community_name": "verify.go", - "norm_label": ".verifysignature()" - }, - { - "label": ".verifySignatureReader()", - "file_type": "code", - "source_file": "Server/updater/verify.go", - "source_location": "L126", - "_origin": "ast", - "id": "updater_updater_verifysignaturereader", - "community": 118, - "community_name": "verify.go", - "norm_label": ".verifysignaturereader()" - }, - { - "label": "role_test.go", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_service_role_test", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "role_test.go" - }, - { - "label": "assertAudit()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L619", - "_origin": "ast", - "id": "server_service_role_test_assertaudit", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "assertaudit()" - }, - { - "label": "newRoleCRUDService()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L26", - "_origin": "ast", - "id": "server_service_role_test_newrolecrudservice", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "newrolecrudservice()" - }, - { - "label": "TestAffectedUserIDs()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L606", - "_origin": "ast", - "id": "server_service_role_test_testaffecteduserids", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testaffecteduserids()" - }, - { - "label": "TestCreateRole_CannotGrantUnheldBit()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L207", - "_origin": "ast", - "id": "server_service_role_test_testcreaterole_cannotgrantunheldbit", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testcreaterole_cannotgrantunheldbit()" - }, - { - "label": "TestCreateRole_CannotPlaceAtOrAboveOwnRank()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L189", - "_origin": "ast", - "id": "server_service_role_test_testcreaterole_cannotplaceatoraboveownrank", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testcreaterole_cannotplaceatoraboveownrank()" - }, - { - "label": "TestCreateRole_DefaultPlacementAvoidsCollision()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L107", - "_origin": "ast", - "id": "server_service_role_test_testcreaterole_defaultplacementavoidscollision", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testcreaterole_defaultplacementavoidscollision()" - }, - { - "label": "TestCreateRole_DefaultsToJustBelowActor()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L88", - "_origin": "ast", - "id": "server_service_role_test_testcreaterole_defaultstojustbelowactor", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testcreaterole_defaultstojustbelowactor()" - }, - { - "label": "TestCreateRole_HappyPath()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L52", - "_origin": "ast", - "id": "server_service_role_test_testcreaterole_happypath", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testcreaterole_happypath()" - }, - { - "label": "TestCreateRole_NameUniquenessIsCaseInsensitive()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L141", - "_origin": "ast", - "id": "server_service_role_test_testcreaterole_nameuniquenessiscaseinsensitive", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testcreaterole_nameuniquenessiscaseinsensitive()" - }, - { - "label": "TestCreateRole_RejectsBadColor()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L156", - "_origin": "ast", - "id": "server_service_role_test_testcreaterole_rejectsbadcolor", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testcreaterole_rejectsbadcolor()" - }, - { - "label": "TestCreateRole_RejectsExplicitPositionCollision()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L128", - "_origin": "ast", - "id": "server_service_role_test_testcreaterole_rejectsexplicitpositioncollision", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testcreaterole_rejectsexplicitpositioncollision()" - }, - { - "label": "TestCreateRole_RequiresManageRoles()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L176", - "_origin": "ast", - "id": "server_service_role_test_testcreaterole_requiresmanageroles", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testcreaterole_requiresmanageroles()" - }, - { - "label": "TestDeleteRole_InvalidatesReassignedMembers()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L467", - "_origin": "ast", - "id": "server_service_role_test_testdeleterole_invalidatesreassignedmembers", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testdeleterole_invalidatesreassignedmembers()" - }, - { - "label": "TestDeleteRole_OwnerAndDefaultAreUndeletable()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L437", - "_origin": "ast", - "id": "server_service_role_test_testdeleterole_owneranddefaultareundeletable", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testdeleterole_owneranddefaultareundeletable()" - }, - { - "label": "TestDeleteRole_ReassignsMembersAndDropsOverrides()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L380", - "_origin": "ast", - "id": "server_service_role_test_testdeleterole_reassignsmembersanddropsoverrides", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testdeleterole_reassignsmembersanddropsoverrides()" - }, - { - "label": "TestListRoles_CarriesMemberCounts()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L584", - "_origin": "ast", - "id": "server_service_role_test_testlistroles_carriesmembercounts", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testlistroles_carriesmembercounts()" - }, - { - "label": "TestReorderRoles_NormalizesPositions()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L505", - "_origin": "ast", - "id": "server_service_role_test_testreorderroles_normalizespositions", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testreorderroles_normalizespositions()" - }, - { - "label": "TestReorderRoles_RejectsPartialAndForeignLists()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L552", - "_origin": "ast", - "id": "server_service_role_test_testreorderroles_rejectspartialandforeignlists", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testreorderroles_rejectspartialandforeignlists()" - }, - { - "label": "TestUpdateRole_AllowsKeepingOwnPosition()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L251", - "_origin": "ast", - "id": "server_service_role_test_testupdaterole_allowskeepingownposition", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testupdaterole_allowskeepingownposition()" - }, - { - "label": "TestUpdateRole_HierarchyAndGrantRules()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L322", - "_origin": "ast", - "id": "server_service_role_test_testupdaterole_hierarchyandgrantrules", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testupdaterole_hierarchyandgrantrules()" - }, - { - "label": "TestUpdateRole_NotFoundAndNameCollision()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L358", - "_origin": "ast", - "id": "server_service_role_test_testupdaterole_notfoundandnamecollision", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testupdaterole_notfoundandnamecollision()" - }, - { - "label": "TestUpdateRole_PartialBodyLeavesOtherFields()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L260", - "_origin": "ast", - "id": "server_service_role_test_testupdaterole_partialbodyleavesotherfields", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testupdaterole_partialbodyleavesotherfields()" - }, - { - "label": "TestUpdateRole_RejectsExplicitPositionCollision()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L239", - "_origin": "ast", - "id": "server_service_role_test_testupdaterole_rejectsexplicitpositioncollision", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testupdaterole_rejectsexplicitpositioncollision()" - }, - { - "label": "TestUpdateRole_ReportsPermissionChange()", - "file_type": "code", - "source_file": "Server/service/role_test.go", - "source_location": "L293", - "_origin": "ast", - "id": "server_service_role_test_testupdaterole_reportspermissionchange", - "community": 119, - "community_name": "newRoleCRUDService", - "norm_label": "testupdaterole_reportspermissionchange()" - }, - { - "label": "GifPicker.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/GifPicker.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_components_gifpicker", - "community": 12, - "community_name": "types.ts", - "norm_label": "gifpicker.ts" - }, - { - "label": "GIF_UNAVAILABLE_MESSAGE", - "file_type": "code", - "source_file": "Client/tauri-client/src/components/GifPicker.ts", - "source_location": "L29", - "_origin": "ast", - "id": "client_tauri_client_src_components_gifpicker_gif_unavailable_message", - "community": 12, - "community_name": "types.ts", - "norm_label": "gif_unavailable_message" - }, - { - "label": "api.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/api.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_lib_api", - "community": 12, - "community_name": "types.ts", - "norm_label": "api.ts" - }, - { - "label": "log", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/api.ts", - "source_location": "L77", - "_origin": "ast", - "id": "client_tauri_client_src_lib_api_log", - "community": 12, - "community_name": "types.ts", - "norm_label": "log" - }, - { - "label": "gifProvider.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/gifProvider.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_lib_gifprovider", - "community": 12, - "community_name": "types.ts", - "norm_label": "gifprovider.ts" - }, - { - "label": "hostValidation.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/hostValidation.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_lib_hostvalidation", - "community": 12, - "community_name": "types.ts", - "norm_label": "hostvalidation.ts" - }, - { - "label": "types.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/types.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_lib_types", - "community": 12, - "community_name": "types.ts", - "norm_label": "types.ts" - }, - { - "label": "fixtures.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/helpers/fixtures.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_helpers_fixtures", - "community": 12, - "community_name": "types.ts", - "norm_label": "fixtures.ts" - }, - { - "label": "api.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/api.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_api_test", - "community": 12, - "community_name": "types.ts", - "norm_label": "api.test.ts" - }, - { - "label": "{ mockFetch }", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/api.test.ts", - "source_location": "L5", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_api_test_mockfetch", - "community": 12, - "community_name": "types.ts", - "norm_label": "{ mockfetch }" - }, - { - "label": "gif-picker.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/gif-picker.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_gif_picker_test", - "community": 12, - "community_name": "types.ts", - "norm_label": "gif-picker.test.ts" - }, - { - "label": "SEARCH_GIFS", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/gif-picker.test.ts", - "source_location": "L34", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_gif_picker_test_search_gifs", - "community": 12, - "community_name": "types.ts", - "norm_label": "search_gifs" - }, - { - "label": "stubApi", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/gif-picker.test.ts", - "source_location": "L40", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_gif_picker_test_stubapi", - "community": 12, - "community_name": "types.ts", - "norm_label": "stubapi" - }, - { - "label": "TRENDING_GIFS", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/gif-picker.test.ts", - "source_location": "L32", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_gif_picker_test_trending_gifs", - "community": 12, - "community_name": "types.ts", - "norm_label": "trending_gifs" - }, - { - "label": "gif-provider.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/gif-provider.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_gif_provider_test", - "community": 12, - "community_name": "types.ts", - "norm_label": "gif-provider.test.ts" - }, - { - "label": "api", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/gif-provider.test.ts", - "source_location": "L13", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_gif_provider_test_api", - "community": 12, - "community_name": "types.ts", - "norm_label": "api" - }, - { - "label": "gifSearch", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/gif-provider.test.ts", - "source_location": "L11", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_gif_provider_test_gifsearch", - "community": 12, - "community_name": "types.ts", - "norm_label": "gifsearch" - }, - { - "label": "gifTrending", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/gif-provider.test.ts", - "source_location": "L12", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_gif_provider_test_giftrending", - "community": 12, - "community_name": "types.ts", - "norm_label": "giftrending" - }, - { - "label": "host-validation.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/host-validation.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_host_validation_test", - "community": 12, - "community_name": "types.ts", - "norm_label": "host-validation.test.ts" - }, - { - "label": "search-overlay.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/search-overlay.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_search_overlay_test", - "community": 12, - "community_name": "types.ts", - "norm_label": "search-overlay.test.ts" - }, - { - "label": "types.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/types.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_types_test", - "community": 12, - "community_name": "types.ts", - "norm_label": "types.test.ts" - }, - { - "label": "sampleAuthOk", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/types.test.ts", - "source_location": "L14", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_types_test_sampleauthok", - "community": 12, - "community_name": "types.ts", - "norm_label": "sampleauthok" - }, - { - "label": "sampleChatMessage", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/types.test.ts", - "source_location": "L57", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_types_test_samplechatmessage", - "community": 12, - "community_name": "types.ts", - "norm_label": "samplechatmessage" - }, - { - "label": "sampleReady", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/types.test.ts", - "source_location": "L23", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_types_test_sampleready", - "community": 12, - "community_name": "types.ts", - "norm_label": "sampleready" - }, - { - "label": "sampleVoiceConfig", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/types.test.ts", - "source_location": "L78", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_types_test_samplevoiceconfig", - "community": 12, - "community_name": "types.ts", - "norm_label": "samplevoiceconfig" - }, - { - "label": "sampleVoiceSpeakers", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/types.test.ts", - "source_location": "L91", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_types_test_samplevoicespeakers", - "community": 12, - "community_name": "types.ts", - "norm_label": "samplevoicespeakers" - }, - { - "label": "registerVoiceControlsV2()", - "file_type": "code", - "source_file": "Server/ws/handlers_voice.go", - "source_location": "L18", - "_origin": "ast", - "id": "server_ws_handlers_voice_registervoicecontrolsv2", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": "registervoicecontrolsv2()" - }, - { - "label": "voice_moderation.go", - "file_type": "code", - "source_file": "Server/ws/voice_moderation.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_voice_moderation", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": "voice_moderation.go" - }, - { - "label": "disconnectFromVoiceIn()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation.go", - "source_location": "L154", - "_origin": "ast", - "id": "server_ws_voice_moderation_disconnectfromvoicein", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": "disconnectfromvoicein()" - }, - { - "label": "Hub", - "file_type": "code", - "source_file": "Server/ws/voice_moderation.go", - "source_location": "L485", - "_origin": "ast", - "id": "server_ws_voice_moderation_go_ws_hub", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": "hub" - }, - { - "label": "handleVoiceModDeafenV2()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation.go", - "source_location": "L220", - "_origin": "ast", - "id": "server_ws_voice_moderation_handlevoicemoddeafenv2", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": "handlevoicemoddeafenv2()" - }, - { - "label": "handleVoiceModKickV2()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation.go", - "source_location": "L431", - "_origin": "ast", - "id": "server_ws_voice_moderation_handlevoicemodkickv2", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": "handlevoicemodkickv2()" - }, - { - "label": "handleVoiceModMoveV2()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation.go", - "source_location": "L350", - "_origin": "ast", - "id": "server_ws_voice_moderation_handlevoicemodmovev2", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": "handlevoicemodmovev2()" - }, - { - "label": "handleVoiceModMuteV2()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation.go", - "source_location": "L166", - "_origin": "ast", - "id": "server_ws_voice_moderation_handlevoicemodmutev2", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": "handlevoicemodmutev2()" - }, - { - "label": "onOff()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation.go", - "source_location": "L473", - "_origin": "ast", - "id": "server_ws_voice_moderation_onoff", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": "onoff()" - }, - { - "label": "registerVoiceModerationV2()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation.go", - "source_location": "L24", - "_origin": "ast", - "id": "server_ws_voice_moderation_registervoicemoderationv2", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": "registervoicemoderationv2()" - }, - { - "label": "requireTargetInChannel()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation.go", - "source_location": "L128", - "_origin": "ast", - "id": "server_ws_voice_moderation_requiretargetinchannel", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": "requiretargetinchannel()" - }, - { - "label": "voiceModDeafenRollback()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation.go", - "source_location": "L323", - "_origin": "ast", - "id": "server_ws_voice_moderation_voicemoddeafenrollback", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": "voicemoddeafenrollback()" - }, - { - "label": "voiceModRateLimited()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation.go", - "source_location": "L116", - "_origin": "ast", - "id": "server_ws_voice_moderation_voicemodratelimited", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": "voicemodratelimited()" - }, - { - "label": "voiceModRole()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation.go", - "source_location": "L34", - "_origin": "ast", - "id": "server_ws_voice_moderation_voicemodrole", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": "voicemodrole()" - }, - { - "label": "voiceModTarget()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation.go", - "source_location": "L55", - "_origin": "ast", - "id": "server_ws_voice_moderation_voicemodtarget", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": "voicemodtarget()" - }, - { - "label": "writeVoiceModAudit()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation.go", - "source_location": "L465", - "_origin": "ast", - "id": "server_ws_voice_moderation_writevoicemodaudit", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": "writevoicemodaudit()" - }, - { - "label": ".DisconnectFromVoice()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation.go", - "source_location": "L498", - "_origin": "ast", - "id": "ws_hub_disconnectfromvoice", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": ".disconnectfromvoice()" - }, - { - "label": ".DisconnectFromVoiceInChannel()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation.go", - "source_location": "L515", - "_origin": "ast", - "id": "ws_hub_disconnectfromvoiceinchannel", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": ".disconnectfromvoiceinchannel()" - }, - { - "label": ".MuteParticipant()", - "file_type": "code", - "source_file": "Server/ws/voice_moderation.go", - "source_location": "L485", - "_origin": "ast", - "id": "ws_hub_muteparticipant", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": ".muteparticipant()" - }, - { - "label": "voiceChannelDisconnector", - "file_type": "code", - "source_file": "Server/ws/voice_moderation.go", - "source_location": "L148", - "_origin": "ast", - "id": "ws_voicechanneldisconnector", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": "voicechanneldisconnector" - }, - { - "label": "VoiceDeps", - "file_type": "code", - "source_file": "Server/ws/deps.go", - "source_location": "L102", - "_origin": "ast", - "id": "ws_voicedeps", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": "voicedeps" - }, - { - "label": "VoiceModerator", - "file_type": "code", - "source_file": "Server/ws/deps.go", - "source_location": "L66", - "_origin": "ast", - "id": "ws_voicemoderator", - "community": 120, - "community_name": "VoiceDeps", - "norm_label": "voicemoderator" - }, - { - "label": "io.Reader", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_io_reader", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "io.reader" - }, - { - "label": "io.ReaderAt", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_io_readerat", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "io.readerat" - }, - { - "label": "sync/atomic.Int32", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_sync_atomic_int32", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "sync/atomic.int32" - }, - { - "label": "livekit_download.go", - "file_type": "code", - "source_file": "Server/ws/livekit_download.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_livekit_download", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "livekit_download.go" - }, - { - "label": "cleanupOldLiveKitBinaries()", - "file_type": "code", - "source_file": "Server/ws/livekit_download.go", - "source_location": "L335", - "_origin": "ast", - "id": "server_ws_livekit_download_cleanupoldlivekitbinaries", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "cleanupoldlivekitbinaries()" - }, - { - "label": "downloadTo()", - "file_type": "code", - "source_file": "Server/ws/livekit_download.go", - "source_location": "L295", - "_origin": "ast", - "id": "server_ws_livekit_download_downloadto", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "downloadto()" - }, - { - "label": "EnsureLiveKitBinary()", - "file_type": "code", - "source_file": "Server/ws/livekit_download.go", - "source_location": "L83", - "_origin": "ast", - "id": "server_ws_livekit_download_ensurelivekitbinary", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "ensurelivekitbinary()" - }, - { - "label": "ensureLiveKitStageBinary()", - "file_type": "code", - "source_file": "Server/ws/livekit_download.go", - "source_location": "L155", - "_origin": "ast", - "id": "server_ws_livekit_download_ensurelivekitstagebinary", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "ensurelivekitstagebinary()" - }, - { - "label": "extractLiveKitFromTarGz()", - "file_type": "code", - "source_file": "Server/ws/livekit_download.go", - "source_location": "L191", - "_origin": "ast", - "id": "server_ws_livekit_download_extractlivekitfromtargz", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "extractlivekitfromtargz()" - }, - { - "label": "extractLiveKitFromZip()", - "file_type": "code", - "source_file": "Server/ws/livekit_download.go", - "source_location": "L216", - "_origin": "ast", - "id": "server_ws_livekit_download_extractlivekitfromzip", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "extractlivekitfromzip()" - }, - { - "label": "fetchLimited()", - "file_type": "code", - "source_file": "Server/ws/livekit_download.go", - "source_location": "L271", - "_origin": "ast", - "id": "server_ws_livekit_download_fetchlimited", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "fetchlimited()" - }, - { - "label": "livekitAssetName()", - "file_type": "code", - "source_file": "Server/ws/livekit_download.go", - "source_location": "L49", - "_origin": "ast", - "id": "server_ws_livekit_download_livekitassetname", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "livekitassetname()" - }, - { - "label": "livekitBinaryEntry()", - "file_type": "code", - "source_file": "Server/ws/livekit_download.go", - "source_location": "L184", - "_origin": "ast", - "id": "server_ws_livekit_download_livekitbinaryentry", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "livekitbinaryentry()" - }, - { - "label": "livekitBinaryFilename()", - "file_type": "code", - "source_file": "Server/ws/livekit_download.go", - "source_location": "L72", - "_origin": "ast", - "id": "server_ws_livekit_download_livekitbinaryfilename", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "livekitbinaryfilename()" - }, - { - "label": "parseChecksumLine()", - "file_type": "code", - "source_file": "Server/ws/livekit_download.go", - "source_location": "L259", - "_origin": "ast", - "id": "server_ws_livekit_download_parsechecksumline", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "parsechecksumline()" - }, - { - "label": "livekit_download_test.go", - "file_type": "code", - "source_file": "Server/ws/livekit_download_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_livekit_download_test", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "livekit_download_test.go" - }, - { - "label": "makeTarGz()", - "file_type": "code", - "source_file": "Server/ws/livekit_download_test.go", - "source_location": "L74", - "_origin": "ast", - "id": "server_ws_livekit_download_test_maketargz", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "maketargz()" - }, - { - "label": "serveLiveKitRelease()", - "file_type": "code", - "source_file": "Server/ws/livekit_download_test.go", - "source_location": "L139", - "_origin": "ast", - "id": "server_ws_livekit_download_test_servelivekitrelease", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "servelivekitrelease()" - }, - { - "label": "TestEnsureLiveKitBinary_ChecksumMismatchRejects()", - "file_type": "code", - "source_file": "Server/ws/livekit_download_test.go", - "source_location": "L210", - "_origin": "ast", - "id": "server_ws_livekit_download_test_testensurelivekitbinary_checksummismatchrejects", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "testensurelivekitbinary_checksummismatchrejects()" - }, - { - "label": "TestEnsureLiveKitBinary_CleansUpOldVersions()", - "file_type": "code", - "source_file": "Server/ws/livekit_download_test.go", - "source_location": "L231", - "_origin": "ast", - "id": "server_ws_livekit_download_test_testensurelivekitbinary_cleansupoldversions", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "testensurelivekitbinary_cleansupoldversions()" - }, - { - "label": "TestEnsureLiveKitBinary_DownloadsVerifiesAndCaches()", - "file_type": "code", - "source_file": "Server/ws/livekit_download_test.go", - "source_location": "L164", - "_origin": "ast", - "id": "server_ws_livekit_download_test_testensurelivekitbinary_downloadsverifiesandcaches", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "testensurelivekitbinary_downloadsverifiesandcaches()" - }, - { - "label": "TestExtractLiveKitFromZip()", - "file_type": "code", - "source_file": "Server/ws/livekit_download_test.go", - "source_location": "L102", - "_origin": "ast", - "id": "server_ws_livekit_download_test_testextractlivekitfromzip", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "testextractlivekitfromzip()" - }, - { - "label": "TestLivekitAssetName()", - "file_type": "code", - "source_file": "Server/ws/livekit_download_test.go", - "source_location": "L22", - "_origin": "ast", - "id": "server_ws_livekit_download_test_testlivekitassetname", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "testlivekitassetname()" - }, - { - "label": "TestParseChecksumLine()", - "file_type": "code", - "source_file": "Server/ws/livekit_download_test.go", - "source_location": "L54", - "_origin": "ast", - "id": "server_ws_livekit_download_test_testparsechecksumline", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "testparsechecksumline()" - }, - { - "label": "writeExact()", - "file_type": "code", - "source_file": "Server/ws/livekit_download.go", - "source_location": "L238", - "_origin": "ast", - "id": "server_ws_livekit_download_writeexact", - "community": 121, - "community_name": "EnsureLiveKitBinary", - "norm_label": "writeexact()" - }, - { - "label": "net.IPNet", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_net_ipnet", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "net.ipnet" - }, - { - "label": "clientip_test.go", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_api_clientip_test", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "clientip_test.go" - }, - { - "label": "inCIDRs()", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L17", - "_origin": "ast", - "id": "server_api_clientip_test_incidrs", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "incidrs()" - }, - { - "label": "TestClientIP_BroadTrustedCIDRKeepsClientsDistinct()", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L156", - "_origin": "ast", - "id": "server_api_clientip_test_testclientip_broadtrustedcidrkeepsclientsdistinct", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "testclientip_broadtrustedcidrkeepsclientsdistinct()" - }, - { - "label": "TestClientIP_NoTrustedProxies_UsesRemoteAddr()", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L93", - "_origin": "ast", - "id": "server_api_clientip_test_testclientip_notrustedproxies_usesremoteaddr", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "testclientip_notrustedproxies_usesremoteaddr()" - }, - { - "label": "TestClientIP_RemoteAddrWithoutPort()", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L226", - "_origin": "ast", - "id": "server_api_clientip_test_testclientip_remoteaddrwithoutport", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "testclientip_remoteaddrwithoutport()" - }, - { - "label": "TestClientIP_SpoofedXFFFromUntrustedRemoteIgnored()", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L182", - "_origin": "ast", - "id": "server_api_clientip_test_testclientip_spoofedxfffromuntrustedremoteignored", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "testclientip_spoofedxfffromuntrustedremoteignored()" - }, - { - "label": "TestClientIP_TrustedProxy_NoXRealIP_FallsBackToRemoteAddr()", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L116", - "_origin": "ast", - "id": "server_api_clientip_test_testclientip_trustedproxy_noxrealip_fallsbacktoremoteaddr", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "testclientip_trustedproxy_noxrealip_fallsbacktoremoteaddr()" - }, - { - "label": "TestClientIP_TrustedProxy_UsesXRealIP()", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L105", - "_origin": "ast", - "id": "server_api_clientip_test_testclientip_trustedproxy_usesxrealip", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "testclientip_trustedproxy_usesxrealip()" - }, - { - "label": "TestClientIP_UntrustedSource_IgnoresXRealIP()", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L127", - "_origin": "ast", - "id": "server_api_clientip_test_testclientip_untrustedsource_ignoresxrealip", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "testclientip_untrustedsource_ignoresxrealip()" - }, - { - "label": "TestClientIP_XForwardedFor_SkipsMalformedEntries()", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L198", - "_origin": "ast", - "id": "server_api_clientip_test_testclientip_xforwardedfor_skipsmalformedentries", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "testclientip_xforwardedfor_skipsmalformedentries()" - }, - { - "label": "TestClientIP_XForwardedFor_UsedWhenNoXRealIP()", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L139", - "_origin": "ast", - "id": "server_api_clientip_test_testclientip_xforwardedfor_usedwhennoxrealip", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "testclientip_xforwardedfor_usedwhennoxrealip()" - }, - { - "label": "TestIPInNets_CIDRMatch()", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L33", - "_origin": "ast", - "id": "server_api_clientip_test_testipinnets_cidrmatch", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "testipinnets_cidrmatch()" - }, - { - "label": "TestIPInNets_CIDRNoMatch()", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L39", - "_origin": "ast", - "id": "server_api_clientip_test_testipinnets_cidrnomatch", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "testipinnets_cidrnomatch()" - }, - { - "label": "TestIPInNets_EmptyList_ReturnsFalse()", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L21", - "_origin": "ast", - "id": "server_api_clientip_test_testipinnets_emptylist_returnsfalse", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "testipinnets_emptylist_returnsfalse()" - }, - { - "label": "TestIPInNets_ExactIPMatch()", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L27", - "_origin": "ast", - "id": "server_api_clientip_test_testipinnets_exactipmatch", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "testipinnets_exactipmatch()" - }, - { - "label": "TestIPInNets_IPv6Match()", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L85", - "_origin": "ast", - "id": "server_api_clientip_test_testipinnets_ipv6match", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "testipinnets_ipv6match()" - }, - { - "label": "TestIPInNets_MultipleCIDRs_FirstMatches()", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L45", - "_origin": "ast", - "id": "server_api_clientip_test_testipinnets_multiplecidrs_firstmatches", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "testipinnets_multiplecidrs_firstmatches()" - }, - { - "label": "TestIPInNets_MultipleCIDRs_NoneMatch()", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L51", - "_origin": "ast", - "id": "server_api_clientip_test_testipinnets_multiplecidrs_nonematch", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "testipinnets_multiplecidrs_nonematch()" - }, - { - "label": "TestParseCIDRList_BarePlainIP_SkippedNotPanic()", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L68", - "_origin": "ast", - "id": "server_api_clientip_test_testparsecidrlist_bareplainip_skippednotpanic", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "testparsecidrlist_bareplainip_skippednotpanic()" - }, - { - "label": "TestParseCIDRList_InvalidCIDR_Skipped()", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L57", - "_origin": "ast", - "id": "server_api_clientip_test_testparsecidrlist_invalidcidr_skipped", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "testparsecidrlist_invalidcidr_skipped()" - }, - { - "label": "TestParseCIDRList_MixedValidInvalid_KeepsValid()", - "file_type": "code", - "source_file": "Server/api/clientip_test.go", - "source_location": "L75", - "_origin": "ast", - "id": "server_api_clientip_test_testparsecidrlist_mixedvalidinvalid_keepsvalid", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "testparsecidrlist_mixedvalidinvalid_keepsvalid()" - }, - { - "label": "clientIPWithProxies()", - "file_type": "code", - "source_file": "Server/api/middleware.go", - "source_location": "L267", - "_origin": "ast", - "id": "server_api_middleware_clientipwithproxies", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "clientipwithproxies()" - }, - { - "label": "ipInNets()", - "file_type": "code", - "source_file": "Server/api/middleware.go", - "source_location": "L346", - "_origin": "ast", - "id": "server_api_middleware_ipinnets", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "ipinnets()" - }, - { - "label": "parseCIDRList()", - "file_type": "code", - "source_file": "Server/api/middleware.go", - "source_location": "L330", - "_origin": "ast", - "id": "server_api_middleware_parsecidrlist", - "community": 122, - "community_name": "clientip_test.go", - "norm_label": "parsecidrlist()" - }, - { - "label": "connectionStats.ts", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/connectionStats.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_lib_connectionstats", - "community": 123, - "community_name": "connectionStats.ts", - "norm_label": "connectionstats.ts" - }, - { - "label": "EMPTY_STATS", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/connectionStats.ts", - "source_location": "L30", - "_origin": "ast", - "id": "client_tauri_client_src_lib_connectionstats_empty_stats", - "community": 123, - "community_name": "connectionStats.ts", - "norm_label": "empty_stats" - }, - { - "label": "log", - "file_type": "code", - "source_file": "Client/tauri-client/src/lib/connectionStats.ts", - "source_location": "L5", - "_origin": "ast", - "id": "client_tauri_client_src_lib_connectionstats_log", - "community": 123, - "community_name": "connectionStats.ts", - "norm_label": "log" - }, - { - "label": "connection-stats.test.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/unit/connection-stats.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_unit_connection_stats_test", - "community": 123, - "community_name": "connectionStats.ts", - "norm_label": "connection-stats.test.ts" - }, - { - "label": "github.com/livekit/protocol/livekit.WebhookEvent", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_github_com_livekit_protocol_livekit_webhookevent", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": "github.com/livekit/protocol/livekit.webhookevent" - }, - { - "label": "Client", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "server_ws_hub_sweep_go_client", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": "client" - }, - { - "label": "Hub", - "file_type": "code", - "source_file": "Server/ws/hub_sweep.go", - "source_location": "L21", - "_origin": "ast", - "id": "server_ws_hub_sweep_go_ws_hub", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": "hub" - }, - { - "label": "livekit_webhook.go", - "file_type": "code", - "source_file": "Server/ws/livekit_webhook.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_livekit_webhook", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": "livekit_webhook.go" - }, - { - "label": "Client", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "server_ws_livekit_webhook_go_client", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": "client" - }, - { - "label": "Hub", - "file_type": "code", - "source_file": "Server/ws/livekit_webhook.go", - "source_location": "L27", - "_origin": "ast", - "id": "server_ws_livekit_webhook_go_ws_hub", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": "hub" - }, - { - "label": "MountWebhookRoute()", - "file_type": "code", - "source_file": "Server/ws/livekit_webhook.go", - "source_location": "L329", - "_origin": "ast", - "id": "server_ws_livekit_webhook_mountwebhookroute", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": "mountwebhookroute()" - }, - { - "label": "parseParticipantIdentity()", - "file_type": "code", - "source_file": "Server/ws/livekit_webhook.go", - "source_location": "L79", - "_origin": "ast", - "id": "server_ws_livekit_webhook_parseparticipantidentity", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": "parseparticipantidentity()" - }, - { - "label": "parseRoomChannelID()", - "file_type": "code", - "source_file": "Server/ws/livekit_webhook.go", - "source_location": "L94", - "_origin": "ast", - "id": "server_ws_livekit_webhook_parseroomchannelid", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": "parseroomchannelid()" - }, - { - "label": "buildVoiceLeave()", - "file_type": "code", - "source_file": "Server/ws/messages.go", - "source_location": "L704", - "_origin": "ast", - "id": "server_ws_messages_buildvoiceleave", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": "buildvoiceleave()" - }, - { - "label": "TestBroadcastVoiceEvent_VoiceParticipantsAlwaysInAudience()", - "file_type": "code", - "source_file": "Server/ws/voice_audience_test.go", - "source_location": "L22", - "_origin": "ast", - "id": "server_ws_voice_audience_test_testbroadcastvoiceevent_voiceparticipantsalwaysinaudience", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": "testbroadcastvoiceevent_voiceparticipantsalwaysinaudience()" - }, - { - "label": "voice_leave.go", - "file_type": "code", - "source_file": "Server/ws/voice_leave.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_voice_leave", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": "voice_leave.go" - }, - { - "label": "Client", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "server_ws_voice_leave_go_client", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": "client" - }, - { - "label": "Hub", - "file_type": "code", - "source_file": "Server/ws/voice_leave.go", - "source_location": "L15", - "_origin": "ast", - "id": "server_ws_voice_leave_go_ws_hub", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": "hub" - }, - { - "label": "leaveVoiceChannelWithRetry()", - "file_type": "code", - "source_file": "Server/ws/voice_leave.go", - "source_location": "L107", - "_origin": "ast", - "id": "server_ws_voice_leave_leavevoicechannelwithretry", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": "leavevoicechannelwithretry()" - }, - { - "label": ".CleanupVoiceForChannel()", - "file_type": "code", - "source_file": "Server/ws/hub_sweep.go", - "source_location": "L366", - "_origin": "ast", - "id": "ws_hub_cleanupvoiceforchannel", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": ".cleanupvoiceforchannel()" - }, - { - "label": ".clearVoiceAndUnsubscribe()", - "file_type": "code", - "source_file": "Server/ws/voice_leave.go", - "source_location": "L15", - "_origin": "ast", - "id": "ws_hub_clearvoiceandunsubscribe", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": ".clearvoiceandunsubscribe()" - }, - { - "label": ".finishVoiceLeave()", - "file_type": "code", - "source_file": "Server/ws/voice_leave.go", - "source_location": "L56", - "_origin": "ast", - "id": "ws_hub_finishvoiceleave", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": ".finishvoiceleave()" - }, - { - "label": ".handleVoiceLeave()", - "file_type": "code", - "source_file": "Server/ws/voice_leave.go", - "source_location": "L27", - "_origin": "ast", - "id": "ws_hub_handlevoiceleave", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": ".handlevoiceleave()" - }, - { - "label": ".handleVoiceLeaveIfStillIn()", - "file_type": "code", - "source_file": "Server/ws/voice_leave.go", - "source_location": "L42", - "_origin": "ast", - "id": "ws_hub_handlevoiceleaveifstillin", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": ".handlevoiceleaveifstillin()" - }, - { - "label": ".handleWebhookParticipantJoined()", - "file_type": "code", - "source_file": "Server/ws/livekit_webhook.go", - "source_location": "L101", - "_origin": "ast", - "id": "ws_hub_handlewebhookparticipantjoined", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": ".handlewebhookparticipantjoined()" - }, - { - "label": ".HandleWebhookParticipantJoinedEventForTest()", - "file_type": "code", - "source_file": "Server/ws/export_test.go", - "source_location": "L435", - "_origin": "ast", - "id": "ws_hub_handlewebhookparticipantjoinedeventfortest", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": ".handlewebhookparticipantjoinedeventfortest()" - }, - { - "label": ".handleWebhookParticipantLeft()", - "file_type": "code", - "source_file": "Server/ws/livekit_webhook.go", - "source_location": "L190", - "_origin": "ast", - "id": "ws_hub_handlewebhookparticipantleft", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": ".handlewebhookparticipantleft()" - }, - { - "label": ".kickClient()", - "file_type": "code", - "source_file": "Server/ws/hub_sweep.go", - "source_location": "L57", - "_origin": "ast", - "id": "ws_hub_kickclient", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": ".kickclient()" - }, - { - "label": ".NewLiveKitWebhookHandler()", - "file_type": "code", - "source_file": "Server/ws/livekit_webhook.go", - "source_location": "L27", - "_origin": "ast", - "id": "ws_hub_newlivekitwebhookhandler", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": ".newlivekitwebhookhandler()" - }, - { - "label": ".onStaleTick()", - "file_type": "code", - "source_file": "Server/ws/hub_sweep.go", - "source_location": "L21", - "_origin": "ast", - "id": "ws_hub_onstaletick", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": ".onstaletick()" - }, - { - "label": ".refreshTelemetryGauges()", - "file_type": "code", - "source_file": "Server/ws/hub_sweep.go", - "source_location": "L35", - "_origin": "ast", - "id": "ws_hub_refreshtelemetrygauges", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": ".refreshtelemetrygauges()" - }, - { - "label": ".sweepRevokedSessions()", - "file_type": "code", - "source_file": "Server/ws/hub_sweep.go", - "source_location": "L110", - "_origin": "ast", - "id": "ws_hub_sweeprevokedsessions", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": ".sweeprevokedsessions()" - }, - { - "label": ".sweepStaleClients()", - "file_type": "code", - "source_file": "Server/ws/hub_sweep.go", - "source_location": "L88", - "_origin": "ast", - "id": "ws_hub_sweepstaleclients", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": ".sweepstaleclients()" - }, - { - "label": ".sweepStaleVoiceEvictRevoked()", - "file_type": "code", - "source_file": "Server/ws/hub_sweep.go", - "source_location": "L166", - "_origin": "ast", - "id": "ws_hub_sweepstalevoiceevictrevoked", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": ".sweepstalevoiceevictrevoked()" - }, - { - "label": ".sweepStaleVoiceStates()", - "file_type": "code", - "source_file": "Server/ws/hub_sweep.go", - "source_location": "L218", - "_origin": "ast", - "id": "ws_hub_sweepstalevoicestates", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": ".sweepstalevoicestates()" - }, - { - "label": ".webhookJoinedEnforceVoiceState()", - "file_type": "code", - "source_file": "Server/ws/livekit_webhook.go", - "source_location": "L151", - "_origin": "ast", - "id": "ws_hub_webhookjoinedenforcevoicestate", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": ".webhookjoinedenforcevoicestate()" - }, - { - "label": ".webhookLeftCleanupClient()", - "file_type": "code", - "source_file": "Server/ws/livekit_webhook.go", - "source_location": "L255", - "_origin": "ast", - "id": "ws_hub_webhookleftcleanupclient", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": ".webhookleftcleanupclient()" - }, - { - "label": ".webhookLeftFinishLeave()", - "file_type": "code", - "source_file": "Server/ws/livekit_webhook.go", - "source_location": "L299", - "_origin": "ast", - "id": "ws_hub_webhookleftfinishleave", - "community": 124, - "community_name": "buildVoiceLeave", - "norm_label": ".webhookleftfinishleave()" - }, - { - "label": "lastRequest", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L50", - "_origin": "ast", - "id": "api_lastrequest", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": "lastrequest" - }, - { - "label": ".get()", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L55", - "_origin": "ast", - "id": "api_lastrequest_get", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": ".get()" - }, - { - "label": "gif_handler_test.go", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_api_gif_handler_test", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": "gif_handler_test.go" - }, - { - "label": "buildGIFRouter()", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L21", - "_origin": "ast", - "id": "server_api_gif_handler_test_buildgifrouter", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": "buildgifrouter()" - }, - { - "label": "decodeGIFError()", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L91", - "_origin": "ast", - "id": "server_api_gif_handler_test_decodegiferror", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": "decodegiferror()" - }, - { - "label": "decodeGIFResults()", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L80", - "_origin": "ast", - "id": "server_api_gif_handler_test_decodegifresults", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": "decodegifresults()" - }, - { - "label": "gifGET()", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L63", - "_origin": "ast", - "id": "server_api_gif_handler_test_gifget", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": "gifget()" - }, - { - "label": "stubKlipy()", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L32", - "_origin": "ast", - "id": "server_api_gif_handler_test_stubklipy", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": "stubklipy()" - }, - { - "label": "TestGIFAuthCheckedBeforeDisabledCheck()", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L233", - "_origin": "ast", - "id": "server_api_gif_handler_test_testgifauthcheckedbeforedisabledcheck", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": "testgifauthcheckedbeforedisabledcheck()" - }, - { - "label": "TestGIFDisabledMakesNoUpstreamCall()", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L193", - "_origin": "ast", - "id": "server_api_gif_handler_test_testgifdisabledmakesnoupstreamcall", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": "testgifdisabledmakesnoupstreamcall()" - }, - { - "label": "TestGIFDisabledWhenNoKeyConfigured()", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L176", - "_origin": "ast", - "id": "server_api_gif_handler_test_testgifdisabledwhennokeyconfigured", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": "testgifdisabledwhennokeyconfigured()" - }, - { - "label": "TestGIFMalformedUpstreamBecomesBadGateway()", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L293", - "_origin": "ast", - "id": "server_api_gif_handler_test_testgifmalformedupstreambecomesbadgateway", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": "testgifmalformedupstreambecomesbadgateway()" - }, - { - "label": "TestGIFRateLimitBucketIsSeparate()", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L334", - "_origin": "ast", - "id": "server_api_gif_handler_test_testgifratelimitbucketisseparate", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": "testgifratelimitbucketisseparate()" - }, - { - "label": "TestGIFRateLimited()", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L307", - "_origin": "ast", - "id": "server_api_gif_handler_test_testgifratelimited", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": "testgifratelimited()" - }, - { - "label": "TestGIFRejectsInvalidToken()", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L220", - "_origin": "ast", - "id": "server_api_gif_handler_test_testgifrejectsinvalidtoken", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": "testgifrejectsinvalidtoken()" - }, - { - "label": "TestGIFRequiresAuth()", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L207", - "_origin": "ast", - "id": "server_api_gif_handler_test_testgifrequiresauth", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": "testgifrequiresauth()" - }, - { - "label": "TestGIFResponseNeverLeaksAPIKey()", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L159", - "_origin": "ast", - "id": "server_api_gif_handler_test_testgifresponseneverleaksapikey", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": "testgifresponseneverleaksapikey()" - }, - { - "label": "TestGIFSearchProxiesUpstream()", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L104", - "_origin": "ast", - "id": "server_api_gif_handler_test_testgifsearchproxiesupstream", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": "testgifsearchproxiesupstream()" - }, - { - "label": "TestGIFSearchValidatesInput()", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L245", - "_origin": "ast", - "id": "server_api_gif_handler_test_testgifsearchvalidatesinput", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": "testgifsearchvalidatesinput()" - }, - { - "label": "TestGIFTrendingProxiesUpstream()", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L137", - "_origin": "ast", - "id": "server_api_gif_handler_test_testgiftrendingproxiesupstream", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": "testgiftrendingproxiesupstream()" - }, - { - "label": "TestGIFUpstreamErrorBecomesBadGateway()", - "file_type": "code", - "source_file": "Server/api/gif_handler_test.go", - "source_location": "L275", - "_origin": "ast", - "id": "server_api_gif_handler_test_testgifupstreamerrorbecomesbadgateway", - "community": 125, - "community_name": "gif_handler_test.go", - "norm_label": "testgifupstreamerrorbecomesbadgateway()" - }, - { - "label": "a11y-smoke.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/a11y-smoke.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_a11y_smoke_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "a11y-smoke.spec.ts" - }, - { - "label": "channel-sidebar.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/channel-sidebar.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_channel_sidebar_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "channel-sidebar.spec.ts" - }, - { - "label": "channel-switch-messages.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/channel-switch-messages.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_channel_switch_messages_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "channel-switch-messages.spec.ts" - }, - { - "label": "chat-header.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/chat-header.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_chat_header_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "chat-header.spec.ts" - }, - { - "label": "connected-overlay.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/connected-overlay.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_connected_overlay_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "connected-overlay.spec.ts" - }, - { - "label": "emoji-insertion.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/emoji-insertion.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_emoji_insertion_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "emoji-insertion.spec.ts" - }, - { - "label": "e2e/helpers.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "e2e/helpers.ts" - }, - { - "label": "MOCK_INVITES", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L232", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_mock_invites", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "mock_invites" - }, - { - "label": "MOCK_MESSAGES_RICH", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L101", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_mock_messages_rich", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "mock_messages_rich" - }, - { - "label": "MOCK_READY_PAYLOAD", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/helpers.ts", - "source_location": "L59", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_helpers_mock_ready_payload", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "mock_ready_payload" - }, - { - "label": "logout-flow.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/logout-flow.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_logout_flow_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "logout-flow.spec.ts" - }, - { - "label": "main-layout.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/main-layout.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_main_layout_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "main-layout.spec.ts" - }, - { - "label": "member-list.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/member-list.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_member_list_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "member-list.spec.ts" - }, - { - "label": "message-actions.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/message-actions.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_message_actions_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "message-actions.spec.ts" - }, - { - "label": "message-edit-delete.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/message-edit-delete.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_message_edit_delete_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "message-edit-delete.spec.ts" - }, - { - "label": "message-input.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/message-input.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_message_input_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "message-input.spec.ts" - }, - { - "label": "message-list.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/message-list.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_message_list_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "message-list.spec.ts" - }, - { - "label": "message-send-flow.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/message-send-flow.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_message_send_flow_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "message-send-flow.spec.ts" - }, - { - "label": "e2e/overlays.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/overlays.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_overlays_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "e2e/overlays.spec.ts" - }, - { - "label": "reply-flow.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/reply-flow.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_reply_flow_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "reply-flow.spec.ts" - }, - { - "label": "e2e/settings-overlay.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/settings-overlay.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_settings_overlay_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "e2e/settings-overlay.spec.ts" - }, - { - "label": "sidebar-header.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/sidebar-header.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_sidebar_header_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "sidebar-header.spec.ts" - }, - { - "label": "e2e/theme-persistence.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/theme-persistence.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_theme_persistence_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "e2e/theme-persistence.spec.ts" - }, - { - "label": "toast.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/toast.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_toast_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "toast.spec.ts" - }, - { - "label": "typing-indicator.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/typing-indicator.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_typing_indicator_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "typing-indicator.spec.ts" - }, - { - "label": "typing-indicator-ws.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/typing-indicator-ws.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_typing_indicator_ws_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "typing-indicator-ws.spec.ts" - }, - { - "label": "user-bar.spec.ts", - "file_type": "code", - "source_file": "Client/tauri-client/tests/e2e/user-bar.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_tests_e2e_user_bar_spec", - "community": 126, - "community_name": "e2e/helpers.ts", - "norm_label": "user-bar.spec.ts" - }, - { - "label": "CreateMessageParams", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L19", - "_origin": "ast", - "id": "dbgen_createmessageparams", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": "createmessageparams" - }, - { - "label": "EditMessageContentParams", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L55", - "_origin": "ast", - "id": "dbgen_editmessagecontentparams", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": "editmessagecontentparams" - }, - { - "label": "GetChannelUnreadCountsParams", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L94", - "_origin": "ast", - "id": "dbgen_getchannelunreadcountsparams", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": "getchannelunreadcountsparams" - }, - { - "label": "GetChannelUnreadCountsRow", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L100", - "_origin": "ast", - "id": "dbgen_getchannelunreadcountsrow", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": "getchannelunreadcountsrow" - }, - { - "label": "GetMessagesForAPIParams", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L178", - "_origin": "ast", - "id": "dbgen_getmessagesforapiparams", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": "getmessagesforapiparams" - }, - { - "label": "GetMessagesForAPIRow", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L183", - "_origin": "ast", - "id": "dbgen_getmessagesforapirow", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": "getmessagesforapirow" - }, - { - "label": "GetReadStateParams", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L237", - "_origin": "ast", - "id": "dbgen_getreadstateparams", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": "getreadstateparams" - }, - { - "label": "GetReadStateRow", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L242", - "_origin": "ast", - "id": "dbgen_getreadstaterow", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": "getreadstaterow" - }, - { - "label": ".CreateMessage()", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L26", - "_origin": "ast", - "id": "dbgen_queries_createmessage", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": ".createmessage()" - }, - { - "label": ".EditMessageContent()", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L60", - "_origin": "ast", - "id": "dbgen_queries_editmessagecontent", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": ".editmessagecontent()" - }, - { - "label": ".GetChannelUnreadCounts()", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L107", - "_origin": "ast", - "id": "dbgen_queries_getchannelunreadcounts", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": ".getchannelunreadcounts()" - }, - { - "label": ".GetLatestMessageID()", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L139", - "_origin": "ast", - "id": "dbgen_queries_getlatestmessageid", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": ".getlatestmessageid()" - }, - { - "label": ".GetMessage()", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L152", - "_origin": "ast", - "id": "dbgen_queries_getmessage", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": ".getmessage()" - }, - { - "label": ".GetMessagesForAPI()", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L197", - "_origin": "ast", - "id": "dbgen_queries_getmessagesforapi", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": ".getmessagesforapi()" - }, - { - "label": ".GetReadState()", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L250", - "_origin": "ast", - "id": "dbgen_queries_getreadstate", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": ".getreadstate()" - }, - { - "label": ".SetMessagePinned()", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L266", - "_origin": "ast", - "id": "dbgen_queries_setmessagepinned", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": ".setmessagepinned()" - }, - { - "label": ".SoftDeleteMessage()", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L274", - "_origin": "ast", - "id": "dbgen_queries_softdeletemessage", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": ".softdeletemessage()" - }, - { - "label": ".UpdateReadState()", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L295", - "_origin": "ast", - "id": "dbgen_queries_updatereadstate", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": ".updatereadstate()" - }, - { - "label": "SetMessagePinnedParams", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L261", - "_origin": "ast", - "id": "dbgen_setmessagepinnedparams", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": "setmessagepinnedparams" - }, - { - "label": "UpdateReadStateParams", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L287", - "_origin": "ast", - "id": "dbgen_updatereadstateparams", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": "updatereadstateparams" - }, - { - "label": "messages.sql.go", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_db_dbgen_messages_sql", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": "messages.sql.go" - }, - { - "label": "Queries", - "file_type": "code", - "source_file": "Server/db/dbgen/messages.sql.go", - "source_location": "L26", - "_origin": "ast", - "id": "server_db_dbgen_messages_sql_go_dbgen_queries", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": "queries" - }, - { - "label": "Message", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "server_db_dbgen_messages_sql_go_message", - "community": 127, - "community_name": "messages.sql.go", - "norm_label": "message" - }, - { - "label": "Channel Endpoints", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L544", - "_origin": "ast", - "id": "docs_api_channel_endpoints", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "channel endpoints" - }, - { - "label": "DELETE /api/v1/channels/{id}/pins/{messageId}", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L843", - "_origin": "ast", - "id": "docs_api_delete_api_v1_channels_id_pins_messageid", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "delete /api/v1/channels/{id}/pins/{messageid}" - }, - { - "label": "Errors", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L720", - "_origin": "ast", - "id": "docs_api_errors_720", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "errors" - }, - { - "label": "GET /api/v1/channels", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L546", - "_origin": "ast", - "id": "docs_api_get_api_v1_channels", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "get /api/v1/channels" - }, - { - "label": "GET /api/v1/channels/{id}/messages", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L600", - "_origin": "ast", - "id": "docs_api_get_api_v1_channels_id_messages", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "get /api/v1/channels/{id}/messages" - }, - { - "label": "GET /api/v1/channels/{id}/messages/around/{messageId}", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L679", - "_origin": "ast", - "id": "docs_api_get_api_v1_channels_id_messages_around_messageid", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "get /api/v1/channels/{id}/messages/around/{messageid}" - }, - { - "label": "GET /api/v1/channels/{id}/messages/{messageId}/reactions/{emoji}/users", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L779", - "_origin": "ast", - "id": "docs_api_get_api_v1_channels_id_messages_messageid_reactions_emoji_users", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "get /api/v1/channels/{id}/messages/{messageid}/reactions/{emoji}/users" - }, - { - "label": "GET /api/v1/channels/{id}/pins", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L819", - "_origin": "ast", - "id": "docs_api_get_api_v1_channels_id_pins", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "get /api/v1/channels/{id}/pins" - }, - { - "label": "Pagination", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L667", - "_origin": "ast", - "id": "docs_api_pagination", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "pagination" - }, - { - "label": "POST /api/v1/channels/{id}/messages/purge", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L734", - "_origin": "ast", - "id": "docs_api_post_api_v1_channels_id_messages_purge", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "post /api/v1/channels/{id}/messages/purge" - }, - { - "label": "POST /api/v1/channels/{id}/pins/{messageId}", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L832", - "_origin": "ast", - "id": "docs_api_post_api_v1_channels_id_pins_messageid", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "post /api/v1/channels/{id}/pins/{messageid}" - }, - { - "label": "Query Parameters", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L607", - "_origin": "ast", - "id": "docs_api_query_parameters", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "query parameters" - }, - { - "label": "Query Parameters", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L688", - "_origin": "ast", - "id": "docs_api_query_parameters_688", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "query parameters" - }, - { - "label": "Request Body", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L744", - "_origin": "ast", - "id": "docs_api_request_body", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "request body" - }, - { - "label": "Response 200 OK", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L552", - "_origin": "ast", - "id": "docs_api_response_200_ok_552", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "response 200 ok" - }, - { - "label": "Response 200 OK", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L614", - "_origin": "ast", - "id": "docs_api_response_200_ok_614", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "response 200 ok" - }, - { - "label": "Response 200 OK", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L699", - "_origin": "ast", - "id": "docs_api_response_200_ok_699", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "response 200 ok" - }, - { - "label": "Response 200 OK", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L758", - "_origin": "ast", - "id": "docs_api_response_200_ok_758", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "response 200 ok" - }, - { - "label": "Response 200 OK", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L795", - "_origin": "ast", - "id": "docs_api_response_200_ok_795", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "response 200 ok" - }, - { - "label": "Response 200 OK", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L826", - "_origin": "ast", - "id": "docs_api_response_200_ok_826", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "response 200 ok" - }, - { - "label": "Response 204 No Content", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L839", - "_origin": "ast", - "id": "docs_api_response_204_no_content_839", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "response 204 no content" - }, - { - "label": "Response 204 No Content", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L850", - "_origin": "ast", - "id": "docs_api_response_204_no_content_850", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "response 204 no content" - }, - { - "label": "The `nsfw` flag", - "file_type": "document", - "source_file": "docs/api.md", - "source_location": "L586", - "_origin": "ast", - "id": "docs_api_the_nsfw_flag", - "community": 128, - "community_name": "Channel Endpoints", - "norm_label": "the `nsfw` flag" - }, - { - "label": "aead.dev/minisign.PrivateKey", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_aead_dev_minisign_privatekey", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "aead.dev/minisign.privatekey" - }, - { - "label": "release_manifest_test.go", - "file_type": "code", - "source_file": "Server/updater/release_manifest_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_updater_release_manifest_test", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "release_manifest_test.go" - }, - { - "label": "multiAssetManifest()", - "file_type": "code", - "source_file": "Server/updater/release_manifest_test.go", - "source_location": "L19", - "_origin": "ast", - "id": "server_updater_release_manifest_test_multiassetmanifest", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "multiassetmanifest()" - }, - { - "label": "testHash()", - "file_type": "code", - "source_file": "Server/updater/release_manifest_test.go", - "source_location": "L10", - "_origin": "ast", - "id": "server_updater_release_manifest_test_testhash", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "testhash()" - }, - { - "label": "TestVerifyReleaseManifest_LegacySingleAssetStillVerifies()", - "file_type": "code", - "source_file": "Server/updater/release_manifest_test.go", - "source_location": "L75", - "_origin": "ast", - "id": "server_updater_release_manifest_test_testverifyreleasemanifest_legacysingleassetstillverifies", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "testverifyreleasemanifest_legacysingleassetstillverifies()" - }, - { - "label": "TestVerifyReleaseManifest_MultiAssetBadChecksumFails()", - "file_type": "code", - "source_file": "Server/updater/release_manifest_test.go", - "source_location": "L63", - "_origin": "ast", - "id": "server_updater_release_manifest_test_testverifyreleasemanifest_multiassetbadchecksumfails", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "testverifyreleasemanifest_multiassetbadchecksumfails()" - }, - { - "label": "TestVerifyReleaseManifest_MultiAssetSelectsLinuxEntry()", - "file_type": "code", - "source_file": "Server/updater/release_manifest_test.go", - "source_location": "L25", - "_origin": "ast", - "id": "server_updater_release_manifest_test_testverifyreleasemanifest_multiassetselectslinuxentry", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "testverifyreleasemanifest_multiassetselectslinuxentry()" - }, - { - "label": "TestVerifyReleaseManifest_MultiAssetSelectsWindowsEntry()", - "file_type": "code", - "source_file": "Server/updater/release_manifest_test.go", - "source_location": "L39", - "_origin": "ast", - "id": "server_updater_release_manifest_test_testverifyreleasemanifest_multiassetselectswindowsentry", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "testverifyreleasemanifest_multiassetselectswindowsentry()" - }, - { - "label": "TestVerifyReleaseManifest_MultiAssetUnknownAssetFails()", - "file_type": "code", - "source_file": "Server/updater/release_manifest_test.go", - "source_location": "L53", - "_origin": "ast", - "id": "server_updater_release_manifest_test_testverifyreleasemanifest_multiassetunknownassetfails", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "testverifyreleasemanifest_multiassetunknownassetfails()" - }, - { - "label": "mustBuildChatserverTarGz()", - "file_type": "code", - "source_file": "Server/updater/updater_test.go", - "source_location": "L904", - "_origin": "ast", - "id": "server_updater_updater_test_mustbuildchatservertargz", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "mustbuildchatservertargz()" - }, - { - "label": "newSignedTestUpdater()", - "file_type": "code", - "source_file": "Server/updater/updater_test.go", - "source_location": "L82", - "_origin": "ast", - "id": "server_updater_updater_test_newsignedtestupdater", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "newsignedtestupdater()" - }, - { - "label": "signTestAsset()", - "file_type": "code", - "source_file": "Server/updater/updater_test.go", - "source_location": "L97", - "_origin": "ast", - "id": "server_updater_updater_test_signtestasset", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "signtestasset()" - }, - { - "label": "TestDownloadAndVerify_ChecksumMismatch()", - "file_type": "code", - "source_file": "Server/updater/updater_test.go", - "source_location": "L947", - "_origin": "ast", - "id": "server_updater_updater_test_testdownloadandverify_checksummismatch", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "testdownloadandverify_checksummismatch()" - }, - { - "label": "TestDownloadAndVerify_InvalidSignature()", - "file_type": "code", - "source_file": "Server/updater/updater_test.go", - "source_location": "L1102", - "_origin": "ast", - "id": "server_updater_updater_test_testdownloadandverify_invalidsignature", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "testdownloadandverify_invalidsignature()" - }, - { - "label": "TestDownloadAndVerify_MalformedSignature()", - "file_type": "code", - "source_file": "Server/updater/updater_test.go", - "source_location": "L1153", - "_origin": "ast", - "id": "server_updater_updater_test_testdownloadandverify_malformedsignature", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "testdownloadandverify_malformedsignature()" - }, - { - "label": "TestDownloadAndVerify_ManifestVersionMismatch()", - "file_type": "code", - "source_file": "Server/updater/updater_test.go", - "source_location": "L1202", - "_origin": "ast", - "id": "server_updater_updater_test_testdownloadandverify_manifestversionmismatch", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "testdownloadandverify_manifestversionmismatch()" - }, - { - "label": "TestDownloadAndVerify_MissingSignature()", - "file_type": "code", - "source_file": "Server/updater/updater_test.go", - "source_location": "L1058", - "_origin": "ast", - "id": "server_updater_updater_test_testdownloadandverify_missingsignature", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "testdownloadandverify_missingsignature()" - }, - { - "label": "TestDownloadAndVerify_Success()", - "file_type": "code", - "source_file": "Server/updater/updater_test.go", - "source_location": "L772", - "_origin": "ast", - "id": "server_updater_updater_test_testdownloadandverify_success", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "testdownloadandverify_success()" - }, - { - "label": "testDownloadAndVerifyChecksumMismatchLinux()", - "file_type": "code", - "source_file": "Server/updater/updater_test.go", - "source_location": "L1009", - "_origin": "ast", - "id": "server_updater_updater_test_testdownloadandverifychecksummismatchlinux", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "testdownloadandverifychecksummismatchlinux()" - }, - { - "label": "testDownloadAndVerifyChecksumMismatchWindows()", - "file_type": "code", - "source_file": "Server/updater/updater_test.go", - "source_location": "L958", - "_origin": "ast", - "id": "server_updater_updater_test_testdownloadandverifychecksummismatchwindows", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "testdownloadandverifychecksummismatchwindows()" - }, - { - "label": "testDownloadAndVerifySuccessLinux()", - "file_type": "code", - "source_file": "Server/updater/updater_test.go", - "source_location": "L841", - "_origin": "ast", - "id": "server_updater_updater_test_testdownloadandverifysuccesslinux", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "testdownloadandverifysuccesslinux()" - }, - { - "label": "testDownloadAndVerifySuccessWindows()", - "file_type": "code", - "source_file": "Server/updater/updater_test.go", - "source_location": "L783", - "_origin": "ast", - "id": "server_updater_updater_test_testdownloadandverifysuccesswindows", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "testdownloadandverifysuccesswindows()" - }, - { - "label": "TestVerifySignature_TauriBase64WrappedFormat()", - "file_type": "code", - "source_file": "Server/updater/updater_test.go", - "source_location": "L1265", - "_origin": "ast", - "id": "server_updater_updater_test_testverifysignature_tauribase64wrappedformat", - "community": 129, - "community_name": "newSignedTestUpdater", - "norm_label": "testverifysignature_tauribase64wrappedformat()" - }, - { - "label": "api.go", - "file_type": "code", - "source_file": "Server/admin/api.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_admin_api", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "api.go" - }, - { - "label": "api_edge_cases_test.go", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "api_edge_cases_test.go" - }, - { - "label": "TestAdminAPI_AuditLog_InvalidLimitParam()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L332", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_auditlog_invalidlimitparam", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_auditlog_invalidlimitparam()" - }, - { - "label": "TestAdminAPI_AuditLog_Pagination()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L274", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_auditlog_pagination", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_auditlog_pagination()" - }, - { - "label": "TestAdminAPI_CheckUpdate_NilUpdater()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L226", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_checkupdate_nilupdater", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_checkupdate_nilupdater()" - }, - { - "label": "TestAdminAPI_CreateChannel_DefaultsTypeToText()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L126", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_createchannel_defaultstypetotext", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_createchannel_defaultstypetotext()" - }, - { - "label": "TestAdminAPI_CreateChannel_InvalidBody()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L151", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_createchannel_invalidbody", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_createchannel_invalidbody()" - }, - { - "label": "TestAdminAPI_DeleteChannel_InvalidID()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L242", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_deletechannel_invalidid", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_deletechannel_invalidid()" - }, - { - "label": "TestAdminAPI_ForceLogout_InvalidID()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L171", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_forcelogout_invalidid", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_forcelogout_invalidid()" - }, - { - "label": "TestAdminAPI_ListUsers_CapLargeLimit()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L209", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_listusers_caplargelimit", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_listusers_caplargelimit()" - }, - { - "label": "TestAdminAPI_ListUsers_InvalidLimitParam()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L346", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_listusers_invalidlimitparam", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_listusers_invalidlimitparam()" - }, - { - "label": "TestAdminAPI_LogStreamTicketFlow()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L388", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_logstreamticketflow", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_logstreamticketflow()" - }, - { - "label": "TestAdminAPI_PatchChannel_InvalidBody()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L187", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_patchchannel_invalidbody", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchchannel_invalidbody()" - }, - { - "label": "TestAdminAPI_PatchChannel_InvalidID()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L258", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_patchchannel_invalidid", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchchannel_invalidid()" - }, - { - "label": "TestAdminAPI_PatchUser_BanNilHubDoesNotPanic()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L364", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_patchuser_bannilhubdoesnotpanic", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchuser_bannilhubdoesnotpanic()" - }, - { - "label": "TestAdminAPI_PatchUser_BanWithoutReason()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L509", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_patchuser_banwithoutreason", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchuser_banwithoutreason()" - }, - { - "label": "TestAdminAPI_PatchUser_CannotModifySelf()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L22", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_patchuser_cannotmodifyself", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchuser_cannotmodifyself()" - }, - { - "label": "TestAdminAPI_PatchUser_InvalidBody()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L104", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_patchuser_invalidbody", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchuser_invalidbody()" - }, - { - "label": "TestAdminAPI_PatchUser_RoleChangeBroadcast()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L529", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_patchuser_rolechangebroadcast", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchuser_rolechangebroadcast()" - }, - { - "label": "TestAdminAPI_PatchUser_RoleChangeNilHubDoesNotPanic()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L484", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_patchuser_rolechangenilhubdoesnotpanic", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchuser_rolechangenilhubdoesnotpanic()" - }, - { - "label": "TestAdminAPI_PatchUser_TempBan()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L63", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_patchuser_tempban", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchuser_tempban()" - }, - { - "label": "TestAdminAPI_PatchUser_TempBanOutOfRange()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L87", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_patchuser_tempbanoutofrange", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchuser_tempbanoutofrange()" - }, - { - "label": "TestAdminAPI_PatchUser_UnbanUser()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L38", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_patchuser_unbanuser", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchuser_unbanuser()" - }, - { - "label": "TestAdminAPI_Setup_AlreadyCompleted()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L624", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_setup_alreadycompleted", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_setup_alreadycompleted()" - }, - { - "label": "TestAdminAPI_Setup_InvalidBody()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L675", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_setup_invalidbody", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_setup_invalidbody()" - }, - { - "label": "TestAdminAPI_Setup_MissingFields()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L643", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_setup_missingfields", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_setup_missingfields()" - }, - { - "label": "TestAdminAPI_Setup_Success()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L593", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_setup_success", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_setup_success()" - }, - { - "label": "TestAdminAPI_Setup_WeakPassword()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L659", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_setup_weakpassword", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_setup_weakpassword()" - }, - { - "label": "TestAdminAPI_SetupStatus_AlreadySetup()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L572", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_setupstatus_alreadysetup", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_setupstatus_alreadysetup()" - }, - { - "label": "TestAdminAPI_SetupStatus_NeedsSetup()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L552", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_setupstatus_needssetup", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_setupstatus_needssetup()" - }, - { - "label": "TestAdminAPI_Stats_NilHub()", - "file_type": "code", - "source_file": "Server/admin/api_edge_cases_test.go", - "source_location": "L305", - "_origin": "ast", - "id": "server_admin_api_edge_cases_test_testadminapi_stats_nilhub", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_stats_nilhub()" - }, - { - "label": "NewAdminAPI()", - "file_type": "code", - "source_file": "Server/admin/api.go", - "source_location": "L68", - "_origin": "ast", - "id": "server_admin_api_newadminapi", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "newadminapi()" - }, - { - "label": "startSetupLimiterReap()", - "file_type": "code", - "source_file": "Server/admin/api.go", - "source_location": "L41", - "_origin": "ast", - "id": "server_admin_api_startsetuplimiterreap", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "startsetuplimiterreap()" - }, - { - "label": "api_test.go", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_admin_api_test", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "api_test.go" - }, - { - "label": "createAdminUser()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L204", - "_origin": "ast", - "id": "server_admin_api_test_createadminuser", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "createadminuser()" - }, - { - "label": "newTestModService()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L24", - "_origin": "ast", - "id": "server_admin_api_test_newtestmodservice", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "newtestmodservice()" - }, - { - "label": "newTestRoleService()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L33", - "_origin": "ast", - "id": "server_admin_api_test_newtestroleservice", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "newtestroleservice()" - }, - { - "label": "TestAdminAPI_ActorFromContext_AuditEntry()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L904", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_actorfromcontext_auditentry", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_actorfromcontext_auditentry()" - }, - { - "label": "TestAdminAPI_ActorFromContext_ForceLogout()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L938", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_actorfromcontext_forcelogout", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_actorfromcontext_forcelogout()" - }, - { - "label": "TestAdminAPI_AuditLog_Empty()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L786", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_auditlog_empty", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_auditlog_empty()" - }, - { - "label": "TestAdminAPI_AuditLog_OK()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L763", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_auditlog_ok", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_auditlog_ok()" - }, - { - "label": "TestAdminAPI_Backup_RequiresOwner()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L870", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_backup_requiresowner", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_backup_requiresowner()" - }, - { - "label": "TestAdminAPI_Backup_Unauthenticated()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L887", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_backup_unauthenticated", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_backup_unauthenticated()" - }, - { - "label": "TestAdminAPI_CreateAPIToken_HugeExpiresHours()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1561", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_createapitoken_hugeexpireshours", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_createapitoken_hugeexpireshours()" - }, - { - "label": "TestAdminAPI_CreateAPIToken_MissingLabel()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1525", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_createapitoken_missinglabel", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_createapitoken_missinglabel()" - }, - { - "label": "TestAdminAPI_CreateAPIToken_NegativeExpiresHours()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1540", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_createapitoken_negativeexpireshours", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_createapitoken_negativeexpireshours()" - }, - { - "label": "TestAdminAPI_CreateAPIToken_OK()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1495", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_createapitoken_ok", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_createapitoken_ok()" - }, - { - "label": "TestAdminAPI_CreateChannel_BroadcastsChannelCreate()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1332", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_createchannel_broadcastschannelcreate", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_createchannel_broadcastschannelcreate()" - }, - { - "label": "TestAdminAPI_CreateChannel_MissingName()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L587", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_createchannel_missingname", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_createchannel_missingname()" - }, - { - "label": "TestAdminAPI_CreateChannel_NilHubDoesNotPanic()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1355", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_createchannel_nilhubdoesnotpanic", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_createchannel_nilhubdoesnotpanic()" - }, - { - "label": "TestAdminAPI_CreateChannel_OK()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L560", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_createchannel_ok", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_createchannel_ok()" - }, - { - "label": "TestAdminAPI_DeleteChannel_ArchivesBeforeVoiceCleanup()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L722", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_deletechannel_archivesbeforevoicecleanup", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_deletechannel_archivesbeforevoicecleanup()" - }, - { - "label": "TestAdminAPI_DeleteChannel_BroadcastsChannelDelete()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1405", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_deletechannel_broadcastschanneldelete", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_deletechannel_broadcastschanneldelete()" - }, - { - "label": "TestAdminAPI_DeleteChannel_CleansVoiceBeforeDBDelete()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L659", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_deletechannel_cleansvoicebeforedbdelete", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_deletechannel_cleansvoicebeforedbdelete()" - }, - { - "label": "TestAdminAPI_DeleteChannel_NilHubDoesNotPanic()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1426", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_deletechannel_nilhubdoesnotpanic", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_deletechannel_nilhubdoesnotpanic()" - }, - { - "label": "TestAdminAPI_DeleteChannel_NotFound()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L749", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_deletechannel_notfound", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_deletechannel_notfound()" - }, - { - "label": "TestAdminAPI_DeleteChannel_OK()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L640", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_deletechannel_ok", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_deletechannel_ok()" - }, - { - "label": "TestAdminAPI_DeleteChannel_SurvivesContextCancelAfterArchiveCommits()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1454", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_deletechannel_survivescontextcancelafterarchivecommits", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_deletechannel_survivescontextcancelafterarchivecommits()" - }, - { - "label": "TestAdminAPI_ForceLogout_OK()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L503", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_forcelogout_ok", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_forcelogout_ok()" - }, - { - "label": "TestAdminAPI_ForceLogout_Unauthenticated()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L523", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_forcelogout_unauthenticated", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_forcelogout_unauthenticated()" - }, - { - "label": "TestAdminAPI_GetSettings_OK()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L806", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_getsettings_ok", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_getsettings_ok()" - }, - { - "label": "TestAdminAPI_ListAPITokens_OK()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1579", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_listapitokens_ok", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_listapitokens_ok()" - }, - { - "label": "TestAdminAPI_ListChannels_OK()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L536", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_listchannels_ok", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_listchannels_ok()" - }, - { - "label": "TestAdminAPI_ListUsers_DefaultPagination()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L332", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_listusers_defaultpagination", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_listusers_defaultpagination()" - }, - { - "label": "TestAdminAPI_ListUsers_NoPasswordHash()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1129", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_listusers_nopasswordhash", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_listusers_nopasswordhash()" - }, - { - "label": "TestAdminAPI_ListUsers_NoTOTPSecret()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1156", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_listusers_nototpsecret", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_listusers_nototpsecret()" - }, - { - "label": "TestAdminAPI_ListUsers_OK()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L311", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_listusers_ok", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_listusers_ok()" - }, - { - "label": "TestAdminAPI_ListUsers_PublicFieldsPresent()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1175", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_listusers_publicfieldspresent", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_listusers_publicfieldspresent()" - }, - { - "label": "TestAdminAPI_ListUsers_Unauthenticated()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L345", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_listusers_unauthenticated", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_listusers_unauthenticated()" - }, - { - "label": "TestAdminAPI_PatchSettings_AcceptsAllWhitelistedKeys()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1023", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_patchsettings_acceptsallwhitelistedkeys", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchsettings_acceptsallwhitelistedkeys()" - }, - { - "label": "TestAdminAPI_PatchSettings_AllowsRequire2FAWhenAllUsersEnrolledAndRegistrationClosed()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1090", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_patchsettings_allowsrequire2fawhenallusersenrolledandregistrationclosed", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchsettings_allowsrequire2fawhenallusersenrolledandregistrationclosed()" - }, - { - "label": "TestAdminAPI_PatchSettings_EmptyPayloadIsOK()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1061", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_patchsettings_emptypayloadisok", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchsettings_emptypayloadisok()" - }, - { - "label": "TestAdminAPI_PatchSettings_InvalidBody()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L853", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_patchsettings_invalidbody", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchsettings_invalidbody()" - }, - { - "label": "TestAdminAPI_PatchSettings_OK()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L828", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_patchsettings_ok", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchsettings_ok()" - }, - { - "label": "TestAdminAPI_PatchSettings_RejectsInvalidBooleanValue()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1110", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_patchsettings_rejectsinvalidbooleanvalue", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchsettings_rejectsinvalidbooleanvalue()" - }, - { - "label": "TestAdminAPI_PatchSettings_RejectsMixedKeys()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L996", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_patchsettings_rejectsmixedkeys", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchsettings_rejectsmixedkeys()" - }, - { - "label": "TestAdminAPI_PatchSettings_RejectsRequire2FAWhenUsersNotEnrolled()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1074", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_patchsettings_rejectsrequire2fawhenusersnotenrolled", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchsettings_rejectsrequire2fawhenusersnotenrolled()" - }, - { - "label": "TestAdminAPI_PatchSettings_RejectsUnknownKey()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L970", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_patchsettings_rejectsunknownkey", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchsettings_rejectsunknownkey()" - }, - { - "label": "TestAdminAPI_PatchUser_BanHierarchy()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L363", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_patchuser_banhierarchy", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchuser_banhierarchy()" - }, - { - "label": "TestAdminAPI_PatchUser_BanUser()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L426", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_patchuser_banuser", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchuser_banuser()" - }, - { - "label": "TestAdminAPI_PatchUser_ChangeRole()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L454", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_patchuser_changerole", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchuser_changerole()" - }, - { - "label": "TestAdminAPI_PatchUser_InvalidID()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L489", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_patchuser_invalidid", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchuser_invalidid()" - }, - { - "label": "TestAdminAPI_PatchUser_NoPasswordHash()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1204", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_patchuser_nopasswordhash", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchuser_nopasswordhash()" - }, - { - "label": "TestAdminAPI_PatchUser_NotFound()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L476", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_patchuser_notfound", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchuser_notfound()" - }, - { - "label": "TestAdminAPI_PatchUser_NoTOTPSecret()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1232", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_patchuser_nototpsecret", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_patchuser_nototpsecret()" - }, - { - "label": "TestAdminAPI_RevokeAPIToken_NotFound()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1630", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_revokeapitoken_notfound", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_revokeapitoken_notfound()" - }, - { - "label": "TestAdminAPI_RevokeAPIToken_OK()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1608", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_revokeapitoken_ok", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_revokeapitoken_ok()" - }, - { - "label": "TestAdminAPI_Stats_OK()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L263", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_stats_ok", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_stats_ok()" - }, - { - "label": "TestAdminAPI_Stats_Unauthenticated()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L286", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_stats_unauthenticated", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_stats_unauthenticated()" - }, - { - "label": "TestAdminAPI_Tokens_RequiresOwner()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1644", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_tokens_requiresowner", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_tokens_requiresowner()" - }, - { - "label": "TestAdminAPI_Tokens_Unauthenticated()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1658", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_tokens_unauthenticated", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_tokens_unauthenticated()" - }, - { - "label": "TestAdminAPI_UpdateChannel_BroadcastsChannelUpdate()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1369", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_updatechannel_broadcastschannelupdate", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_updatechannel_broadcastschannelupdate()" - }, - { - "label": "TestAdminAPI_UpdateChannel_NilHubDoesNotPanic()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L1391", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_updatechannel_nilhubdoesnotpanic", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_updatechannel_nilhubdoesnotpanic()" - }, - { - "label": "TestAdminAPI_UpdateChannel_NotFound()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L625", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_updatechannel_notfound", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_updatechannel_notfound()" - }, - { - "label": "TestAdminAPI_UpdateChannel_OK()", - "file_type": "code", - "source_file": "Server/admin/api_test.go", - "source_location": "L604", - "_origin": "ast", - "id": "server_admin_api_test_testadminapi_updatechannel_ok", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminapi_updatechannel_ok()" - }, - { - "label": "TestGetChannelPermissions_NotFound()", - "file_type": "code", - "source_file": "Server/admin/handlers_channel_perms_test.go", - "source_location": "L68", - "_origin": "ast", - "id": "server_admin_handlers_channel_perms_test_testgetchannelpermissions_notfound", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testgetchannelpermissions_notfound()" - }, - { - "label": "TestGetChannelPermissions_ReturnsAllRoles()", - "file_type": "code", - "source_file": "Server/admin/handlers_channel_perms_test.go", - "source_location": "L30", - "_origin": "ast", - "id": "server_admin_handlers_channel_perms_test_testgetchannelpermissions_returnsallroles", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testgetchannelpermissions_returnsallroles()" - }, - { - "label": "middleware_coverage_test.go", - "file_type": "code", - "source_file": "Server/admin/middleware_coverage_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_admin_middleware_coverage_test", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "middleware_coverage_test.go" - }, - { - "label": "TestAdminAuthMiddleware_BannedAdmin()", - "file_type": "code", - "source_file": "Server/admin/middleware_coverage_test.go", - "source_location": "L55", - "_origin": "ast", - "id": "server_admin_middleware_coverage_test_testadminauthmiddleware_bannedadmin", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminauthmiddleware_bannedadmin()" - }, - { - "label": "TestAdminAuthMiddleware_ExpiredSession()", - "file_type": "code", - "source_file": "Server/admin/middleware_coverage_test.go", - "source_location": "L20", - "_origin": "ast", - "id": "server_admin_middleware_coverage_test_testadminauthmiddleware_expiredsession", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminauthmiddleware_expiredsession()" - }, - { - "label": "TestAdminAuthMiddleware_InvalidToken()", - "file_type": "code", - "source_file": "Server/admin/middleware_coverage_test.go", - "source_location": "L92", - "_origin": "ast", - "id": "server_admin_middleware_coverage_test_testadminauthmiddleware_invalidtoken", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminauthmiddleware_invalidtoken()" - }, - { - "label": "TestAdminAuthMiddleware_MissingBearer()", - "file_type": "code", - "source_file": "Server/admin/middleware_coverage_test.go", - "source_location": "L79", - "_origin": "ast", - "id": "server_admin_middleware_coverage_test_testadminauthmiddleware_missingbearer", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testadminauthmiddleware_missingbearer()" - }, - { - "label": "TestGetMe_OwnerFlagged()", - "file_type": "code", - "source_file": "Server/admin/perm_gates_test.go", - "source_location": "L384", - "_origin": "ast", - "id": "server_admin_perm_gates_test_testgetme_ownerflagged", - "community": 13, - "community_name": "NewAdminAPI", - "norm_label": "testgetme_ownerflagged()" - }, - { - "label": "net.Conn", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_net_conn", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "net.conn" - }, - { - "label": "net.IP", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_net_ip", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "net.ip" - }, - { - "label": "net.Listener", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "go_type_net_listener", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "net.listener" - }, - { - "label": "HTTPRequest", - "file_type": "code", - "source_file": "Server/plugin/host_http.go", - "source_location": "L24", - "_origin": "ast", - "id": "plugin_httprequest", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "httprequest" - }, - { - "label": "HTTPResponse", - "file_type": "code", - "source_file": "Server/plugin/host_http.go", - "source_location": "L32", - "_origin": "ast", - "id": "plugin_httpresponse", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "httpresponse" - }, - { - "label": ".hostAllowed()", - "file_type": "code", - "source_file": "Server/plugin/host_http.go", - "source_location": "L140", - "_origin": "ast", - "id": "plugin_registry_hostallowed", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": ".hostallowed()" - }, - { - "label": ".HTTPDo()", - "file_type": "code", - "source_file": "Server/plugin/host_http.go", - "source_location": "L50", - "_origin": "ast", - "id": "plugin_registry_httpdo", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": ".httpdo()" - }, - { - "label": "TestEmptyAllowlistDeniesEveryHost()", - "file_type": "code", - "source_file": "Server/plugin/audit_closure_test.go", - "source_location": "L200", - "_origin": "ast", - "id": "server_plugin_audit_closure_test_testemptyallowlistdenieseveryhost", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "testemptyallowlistdenieseveryhost()" - }, - { - "label": "host_http.go", - "file_type": "code", - "source_file": "Server/plugin/host_http.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_plugin_host_http", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "host_http.go" - }, - { - "label": "Registry", - "file_type": "code", - "source_file": "Server/plugin/host_http.go", - "source_location": "L50", - "_origin": "ast", - "id": "server_plugin_host_http_go_plugin_registry", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "registry" - }, - { - "label": "GuardedDialContext()", - "file_type": "code", - "source_file": "Server/plugin/host_http.go", - "source_location": "L182", - "_origin": "ast", - "id": "server_plugin_host_http_guardeddialcontext", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "guardeddialcontext()" - }, - { - "label": "ipAllowed()", - "file_type": "code", - "source_file": "Server/plugin/host_http.go", - "source_location": "L227", - "_origin": "ast", - "id": "server_plugin_host_http_ipallowed", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "ipallowed()" - }, - { - "label": "host_http_test.go", - "file_type": "code", - "source_file": "Server/plugin/host_http_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_plugin_host_http_test", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "host_http_test.go" - }, - { - "label": "Registry", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "server_plugin_host_http_test_go_registry", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "registry" - }, - { - "label": "newTestRegistry()", - "file_type": "code", - "source_file": "Server/plugin/host_http_test.go", - "source_location": "L14", - "_origin": "ast", - "id": "server_plugin_host_http_test_newtestregistry", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "newtestregistry()" - }, - { - "label": "TestGuardedDial_FallsBackAcrossVettedIPs()", - "file_type": "code", - "source_file": "Server/plugin/host_http_test.go", - "source_location": "L122", - "_origin": "ast", - "id": "server_plugin_host_http_test_testguardeddial_fallsbackacrossvettedips", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "testguardeddial_fallsbackacrossvettedips()" - }, - { - "label": "TestGuardedDial_PrivateRecordRefusesBeforeAnyDial()", - "file_type": "code", - "source_file": "Server/plugin/host_http_test.go", - "source_location": "L158", - "_origin": "ast", - "id": "server_plugin_host_http_test_testguardeddial_privaterecordrefusesbeforeanydial", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "testguardeddial_privaterecordrefusesbeforeanydial()" - }, - { - "label": "TestHostAllowedCaseInsensitive()", - "file_type": "code", - "source_file": "Server/plugin/host_http_test.go", - "source_location": "L54", - "_origin": "ast", - "id": "server_plugin_host_http_test_testhostallowedcaseinsensitive", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "testhostallowedcaseinsensitive()" - }, - { - "label": "TestHostAllowedDotBoundary()", - "file_type": "code", - "source_file": "Server/plugin/host_http_test.go", - "source_location": "L18", - "_origin": "ast", - "id": "server_plugin_host_http_test_testhostalloweddotboundary", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "testhostalloweddotboundary()" - }, - { - "label": "TestHostAllowedEmptyEntryRejected()", - "file_type": "code", - "source_file": "Server/plugin/host_http_test.go", - "source_location": "L44", - "_origin": "ast", - "id": "server_plugin_host_http_test_testhostallowedemptyentryrejected", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "testhostallowedemptyentryrejected()" - }, - { - "label": "TestHostAllowedTrailingDot()", - "file_type": "code", - "source_file": "Server/plugin/host_http_test.go", - "source_location": "L64", - "_origin": "ast", - "id": "server_plugin_host_http_test_testhostallowedtrailingdot", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "testhostallowedtrailingdot()" - }, - { - "label": "TestIPAllowedAcceptsPublic()", - "file_type": "code", - "source_file": "Server/plugin/host_http_test.go", - "source_location": "L101", - "_origin": "ast", - "id": "server_plugin_host_http_test_testipallowedacceptspublic", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "testipallowedacceptspublic()" - }, - { - "label": "TestIPAllowedNilRejected()", - "file_type": "code", - "source_file": "Server/plugin/host_http_test.go", - "source_location": "L183", - "_origin": "ast", - "id": "server_plugin_host_http_test_testipallowednilrejected", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "testipallowednilrejected()" - }, - { - "label": "TestIPAllowedRejectsAllRanges()", - "file_type": "code", - "source_file": "Server/plugin/host_http_test.go", - "source_location": "L71", - "_origin": "ast", - "id": "server_plugin_host_http_test_testipallowedrejectsallranges", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "testipallowedrejectsallranges()" - }, - { - "label": "serve_handshake_write_deadline_test.go", - "file_type": "code", - "source_file": "Server/ws/serve_handshake_write_deadline_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_serve_handshake_write_deadline_test", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "serve_handshake_write_deadline_test.go" - }, - { - "label": "tinySendBufListener", - "file_type": "code", - "source_file": "Server/ws/serve_handshake_write_deadline_test.go", - "source_location": "L41", - "_origin": "ast", - "id": "ws_tinysendbuflistener", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": "tinysendbuflistener" - }, - { - "label": ".Accept()", - "file_type": "code", - "source_file": "Server/ws/serve_handshake_write_deadline_test.go", - "source_location": "L45", - "_origin": "ast", - "id": "ws_tinysendbuflistener_accept", - "community": 130, - "community_name": "host_http_test.go", - "norm_label": ".accept()" - }, - { - "label": "Client", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "server_ws_pubsub_go_client", - "community": 131, - "community_name": "Topic", - "norm_label": "client" - }, - { - "label": "PubSub", - "file_type": "code", - "source_file": "Server/ws/pubsub.go", - "source_location": "L64", - "_origin": "ast", - "id": "ws_pubsub", - "community": 131, - "community_name": "Topic", - "norm_label": "pubsub" - }, - { - "label": ".Publish()", - "file_type": "code", - "source_file": "Server/ws/pubsub.go", - "source_location": "L175", - "_origin": "ast", - "id": "ws_pubsub_publish", - "community": 131, - "community_name": "Topic", - "norm_label": ".publish()" - }, - { - "label": ".PublishGlobal()", - "file_type": "code", - "source_file": "Server/ws/pubsub.go", - "source_location": "L193", - "_origin": "ast", - "id": "ws_pubsub_publishglobal", - "community": 131, - "community_name": "Topic", - "norm_label": ".publishglobal()" - }, - { - "label": ".PublishGlobalLow()", - "file_type": "code", - "source_file": "Server/ws/pubsub.go", - "source_location": "L198", - "_origin": "ast", - "id": "ws_pubsub_publishgloballow", - "community": 131, - "community_name": "Topic", - "norm_label": ".publishgloballow()" - }, - { - "label": ".PublishHigh()", - "file_type": "code", - "source_file": "Server/ws/pubsub.go", - "source_location": "L181", - "_origin": "ast", - "id": "ws_pubsub_publishhigh", - "community": 131, - "community_name": "Topic", - "norm_label": ".publishhigh()" - }, - { - "label": ".PublishLow()", - "file_type": "code", - "source_file": "Server/ws/pubsub.go", - "source_location": "L187", - "_origin": "ast", - "id": "ws_pubsub_publishlow", - "community": 131, - "community_name": "Topic", - "norm_label": ".publishlow()" - }, - { - "label": ".publishWithPriority()", - "file_type": "code", - "source_file": "Server/ws/pubsub.go", - "source_location": "L204", - "_origin": "ast", - "id": "ws_pubsub_publishwithpriority", - "community": 131, - "community_name": "Topic", - "norm_label": ".publishwithpriority()" - }, - { - "label": ".Subscribe()", - "file_type": "code", - "source_file": "Server/ws/pubsub.go", - "source_location": "L84", - "_origin": "ast", - "id": "ws_pubsub_subscribe", - "community": 131, - "community_name": "Topic", - "norm_label": ".subscribe()" - }, - { - "label": ".SubscriberCount()", - "file_type": "code", - "source_file": "Server/ws/pubsub.go", - "source_location": "L235", - "_origin": "ast", - "id": "ws_pubsub_subscribercount", - "community": 131, - "community_name": "Topic", - "norm_label": ".subscribercount()" - }, - { - "label": ".TopicsForClient()", - "file_type": "code", - "source_file": "Server/ws/pubsub.go", - "source_location": "L243", - "_origin": "ast", - "id": "ws_pubsub_topicsforclient", - "community": 131, - "community_name": "Topic", - "norm_label": ".topicsforclient()" - }, - { - "label": ".Unsubscribe()", - "file_type": "code", - "source_file": "Server/ws/pubsub.go", - "source_location": "L117", - "_origin": "ast", - "id": "ws_pubsub_unsubscribe", - "community": 131, - "community_name": "Topic", - "norm_label": ".unsubscribe()" - }, - { - "label": ".UnsubscribeAll()", - "file_type": "code", - "source_file": "Server/ws/pubsub.go", - "source_location": "L157", - "_origin": "ast", - "id": "ws_pubsub_unsubscribeall", - "community": 131, - "community_name": "Topic", - "norm_label": ".unsubscribeall()" - }, - { - "label": ".unsubscribeLocked()", - "file_type": "code", - "source_file": "Server/ws/pubsub.go", - "source_location": "L130", - "_origin": "ast", - "id": "ws_pubsub_unsubscribelocked", - "community": 131, - "community_name": "Topic", - "norm_label": ".unsubscribelocked()" - }, - { - "label": "Topic", - "file_type": "code", - "source_file": "Server/ws/pubsub.go", - "source_location": "L17", - "_origin": "ast", - "id": "ws_topic", - "community": 131, - "community_name": "Topic", - "norm_label": "topic" - }, - { - "label": ".CreateMessageWithMentions()", - "file_type": "code", - "source_file": "Server/db/mention_queries.go", - "source_location": "L56", - "_origin": "ast", - "id": "db_db_createmessagewithmentions", - "community": 132, - "community_name": "DB", - "norm_label": ".createmessagewithmentions()" - }, - { - "label": ".GetChannelOverrides()", - "file_type": "code", - "source_file": "Server/db/mention_queries.go", - "source_location": "L403", - "_origin": "ast", - "id": "db_db_getchanneloverrides", - "community": 132, - "community_name": "DB", - "norm_label": ".getchanneloverrides()" - }, - { - "label": ".GetMentionCount()", - "file_type": "code", - "source_file": "Server/db/mention_queries.go", - "source_location": "L245", - "_origin": "ast", - "id": "db_db_getmentioncount", - "community": 132, - "community_name": "DB", - "norm_label": ".getmentioncount()" - }, - { - "label": ".GetMentionsByMessageIDs()", - "file_type": "code", - "source_file": "Server/db/mention_queries.go", - "source_location": "L138", - "_origin": "ast", - "id": "db_db_getmentionsbymessageids", - "community": 132, - "community_name": "DB", - "norm_label": ".getmentionsbymessageids()" - }, - { - "label": ".GetUserIDsByUsernames()", - "file_type": "code", - "source_file": "Server/db/mention_queries.go", - "source_location": "L282", - "_origin": "ast", - "id": "db_db_getuseridsbyusernames", - "community": 132, - "community_name": "DB", - "norm_label": ".getuseridsbyusernames()" - }, - { - "label": ".IncrementMentionCounts()", - "file_type": "code", - "source_file": "Server/db/mention_queries.go", - "source_location": "L202", - "_origin": "ast", - "id": "db_db_incrementmentioncounts", - "community": 132, - "community_name": "DB", - "norm_label": ".incrementmentioncounts()" - }, - { - "label": ".ListBlockersOf()", - "file_type": "code", - "source_file": "Server/db/mention_queries.go", - "source_location": "L391", - "_origin": "ast", - "id": "db_db_listblockersof", - "community": 132, - "community_name": "DB", - "norm_label": ".listblockersof()" - }, - { - "label": ".listMentionTargets()", - "file_type": "code", - "source_file": "Server/db/mention_queries.go", - "source_location": "L337", - "_origin": "ast", - "id": "db_db_listmentiontargets", - "community": 132, - "community_name": "DB", - "norm_label": ".listmentiontargets()" - }, - { - "label": ".ListMentionTargetsByRoles()", - "file_type": "code", - "source_file": "Server/db/mention_queries.go", - "source_location": "L376", - "_origin": "ast", - "id": "db_db_listmentiontargetsbyroles", - "community": 132, - "community_name": "DB", - "norm_label": ".listmentiontargetsbyroles()" - }, - { - "label": ".ListMentionTargetsByUserIDs()", - "file_type": "code", - "source_file": "Server/db/mention_queries.go", - "source_location": "L385", - "_origin": "ast", - "id": "db_db_listmentiontargetsbyuserids", - "community": 132, - "community_name": "DB", - "norm_label": ".listmentiontargetsbyuserids()" - }, - { - "label": ".ReplaceMessageMentions()", - "file_type": "code", - "source_file": "Server/db/mention_queries.go", - "source_location": "L91", - "_origin": "ast", - "id": "db_db_replacemessagementions", - "community": 132, - "community_name": "DB", - "norm_label": ".replacemessagementions()" - }, - { - "label": "mentionExecer", - "file_type": "code", - "source_file": "Server/db/mention_queries.go", - "source_location": "L12", - "_origin": "ast", - "id": "db_mentionexecer", - "community": 132, - "community_name": "DB", - "norm_label": "mentionexecer" - }, - { - "label": "mentionTargetColumn", - "file_type": "code", - "source_file": "Server/db/mention_queries.go", - "source_location": "L326", - "_origin": "ast", - "id": "db_mentiontargetcolumn", - "community": 132, - "community_name": "DB", - "norm_label": "mentiontargetcolumn" - }, - { - "label": "mention_queries.go", - "file_type": "code", - "source_file": "Server/db/mention_queries.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_db_mention_queries", - "community": 132, - "community_name": "DB", - "norm_label": "mention_queries.go" - }, - { - "label": "ChannelOverride", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "server_db_mention_queries_go_channeloverride", - "community": 132, - "community_name": "DB", - "norm_label": "channeloverride" - }, - { - "label": "DB", - "file_type": "code", - "source_file": "Server/db/mention_queries.go", - "source_location": "L56", - "_origin": "ast", - "id": "server_db_mention_queries_go_db_db", - "community": 132, - "community_name": "DB", - "norm_label": "db" - }, - { - "label": "MentionTarget", - "file_type": "code", - "source_file": "Server/db/mention_queries.go", - "source_location": "L46", - "_origin": "ast", - "id": "server_db_mention_queries_go_db_mentiontarget", - "community": 132, - "community_name": "DB", - "norm_label": "mentiontarget" - }, - { - "label": "Message", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "server_db_mention_queries_go_message", - "community": 132, - "community_name": "DB", - "norm_label": "message" - }, - { - "label": "insertMentionRows()", - "file_type": "code", - "source_file": "Server/db/mention_queries.go", - "source_location": "L121", - "_origin": "ast", - "id": "server_db_mention_queries_insertmentionrows", - "community": 132, - "community_name": "DB", - "norm_label": "insertmentionrows()" - }, - { - "label": "LowerASCII()", - "file_type": "code", - "source_file": "Server/db/mention_queries.go", - "source_location": "L267", - "_origin": "ast", - "id": "server_db_mention_queries_lowerascii", - "community": 132, - "community_name": "DB", - "norm_label": "lowerascii()" - }, - { - "label": "MessageService", - "file_type": "code", - "source_file": "Server/service/mentions.go", - "source_location": "L106", - "_origin": "ast", - "id": "server_service_mentions_go_service_messageservice", - "community": 132, - "community_name": "DB", - "norm_label": "messageservice" - }, - { - "label": ".applyMentionCounts()", - "file_type": "code", - "source_file": "Server/service/mentions.go", - "source_location": "L160", - "_origin": "ast", - "id": "service_messageservice_applymentioncounts", - "community": 132, - "community_name": "DB", - "norm_label": ".applymentioncounts()" - }, - { - "label": ".applyUserOverridesToReaders()", - "file_type": "code", - "source_file": "Server/service/mentions.go", - "source_location": "L278", - "_origin": "ast", - "id": "service_messageservice_applyuseroverridestoreaders", - "community": 132, - "community_name": "DB", - "norm_label": ".applyuseroverridestoreaders()" - }, - { - "label": ".mentionReaders()", - "file_type": "code", - "source_file": "Server/service/mentions.go", - "source_location": "L228", - "_origin": "ast", - "id": "service_messageservice_mentionreaders", - "community": 132, - "community_name": "DB", - "norm_label": ".mentionreaders()" - }, - { - "label": "001_initial_schema.sql", - "file_type": "code", - "source_file": "Server/migrations/001_initial_schema.sql", - "source_location": null, - "_origin": "ast", - "id": "server_migrations_001_initial_schema", - "community": 133, - "community_name": "users", - "norm_label": "001_initial_schema.sql" - }, - { - "label": "channel_overrides", - "file_type": "code", - "source_file": "Server/migrations/001_initial_schema.sql", - "source_location": "L63", - "_origin": "ast", - "id": "server_migrations_001_initial_schema_channel_overrides", - "community": 133, - "community_name": "users", - "norm_label": "channel_overrides" - }, - { - "label": "channels", - "file_type": "code", - "source_file": "Server/migrations/001_initial_schema.sql", - "source_location": "L51", - "_origin": "ast", - "id": "server_migrations_001_initial_schema_channels", - "community": 133, - "community_name": "users", - "norm_label": "channels" - }, - { - "label": "messages", - "file_type": "code", - "source_file": "Server/migrations/001_initial_schema.sql", - "source_location": "L72", - "_origin": "ast", - "id": "server_migrations_001_initial_schema_messages", - "community": 133, - "community_name": "users", - "norm_label": "messages" - }, - { - "label": "messages_fts", - "file_type": "code", - "source_file": "Server/migrations/001_initial_schema.sql", - "source_location": "L87", - "_origin": "ast", - "id": "server_migrations_001_initial_schema_messages_fts", - "community": 133, - "community_name": "users", - "norm_label": "messages_fts" - }, - { - "label": "roles", - "file_type": "code", - "source_file": "Server/migrations/001_initial_schema.sql", - "source_location": "L5", - "_origin": "ast", - "id": "server_migrations_001_initial_schema_roles", - "community": 133, - "community_name": "users", - "norm_label": "roles" - }, - { - "label": "sessions", - "file_type": "code", - "source_file": "Server/migrations/001_initial_schema.sql", - "source_location": "L37", - "_origin": "ast", - "id": "server_migrations_001_initial_schema_sessions", - "community": 133, - "community_name": "users", - "norm_label": "sessions" - }, - { - "label": "users", - "file_type": "code", - "source_file": "Server/migrations/001_initial_schema.sql", - "source_location": "L22", - "_origin": "ast", - "id": "server_migrations_001_initial_schema_users", - "community": 133, - "community_name": "users", - "norm_label": "users" - }, - { - "label": "002_voice_states.sql", - "file_type": "code", - "source_file": "Server/migrations/002_voice_states.sql", - "source_location": null, - "_origin": "ast", - "id": "server_migrations_002_voice_states", - "community": 133, - "community_name": "users", - "norm_label": "002_voice_states.sql" - }, - { - "label": "voice_states", - "file_type": "code", - "source_file": "Server/migrations/002_voice_states.sql", - "source_location": "L4", - "_origin": "ast", - "id": "server_migrations_002_voice_states_voice_states", - "community": 133, - "community_name": "users", - "norm_label": "voice_states" - }, - { - "label": "009_dm_tables.sql", - "file_type": "code", - "source_file": "Server/migrations/009_dm_tables.sql", - "source_location": null, - "_origin": "ast", - "id": "server_migrations_009_dm_tables", - "community": 133, - "community_name": "users", - "norm_label": "009_dm_tables.sql" - }, - { - "label": "dm_open_state", - "file_type": "code", - "source_file": "Server/migrations/009_dm_tables.sql", - "source_location": "L14", - "_origin": "ast", - "id": "server_migrations_009_dm_tables_dm_open_state", - "community": 133, - "community_name": "users", - "norm_label": "dm_open_state" - }, - { - "label": "dm_participants", - "file_type": "code", - "source_file": "Server/migrations/009_dm_tables.sql", - "source_location": "L6", - "_origin": "ast", - "id": "server_migrations_009_dm_tables_dm_participants", - "community": 133, - "community_name": "users", - "norm_label": "dm_participants" - }, - { - "label": "012_user_blocks.sql", - "file_type": "code", - "source_file": "Server/migrations/012_user_blocks.sql", - "source_location": null, - "_origin": "ast", - "id": "server_migrations_012_user_blocks", - "community": 133, - "community_name": "users", - "norm_label": "012_user_blocks.sql" - }, - { - "label": "user_blocks", - "file_type": "code", - "source_file": "Server/migrations/012_user_blocks.sql", - "source_location": "L4", - "_origin": "ast", - "id": "server_migrations_012_user_blocks_user_blocks", - "community": 133, - "community_name": "users", - "norm_label": "user_blocks" - }, - { - "label": "018_api_tokens.sql", - "file_type": "code", - "source_file": "Server/migrations/018_api_tokens.sql", - "source_location": null, - "_origin": "ast", - "id": "server_migrations_018_api_tokens", - "community": 133, - "community_name": "users", - "norm_label": "018_api_tokens.sql" - }, - { - "label": "api_tokens", - "file_type": "code", - "source_file": "Server/migrations/018_api_tokens.sql", - "source_location": "L14", - "_origin": "ast", - "id": "server_migrations_018_api_tokens_api_tokens", - "community": 133, - "community_name": "users", - "norm_label": "api_tokens" - }, - { - "label": "022_message_mentions.sql", - "file_type": "code", - "source_file": "Server/migrations/022_message_mentions.sql", - "source_location": null, - "_origin": "ast", - "id": "server_migrations_022_message_mentions", - "community": 133, - "community_name": "users", - "norm_label": "022_message_mentions.sql" - }, - { - "label": "message_mentions", - "file_type": "code", - "source_file": "Server/migrations/022_message_mentions.sql", - "source_location": "L6", - "_origin": "ast", - "id": "server_migrations_022_message_mentions_message_mentions", - "community": 133, - "community_name": "users", - "norm_label": "message_mentions" - }, - { - "label": "024_channel_user_overrides.sql", - "file_type": "code", - "source_file": "Server/migrations/024_channel_user_overrides.sql", - "source_location": null, - "_origin": "ast", - "id": "server_migrations_024_channel_user_overrides", - "community": 133, - "community_name": "users", - "norm_label": "024_channel_user_overrides.sql" - }, - { - "label": "channel_user_overrides", - "file_type": "code", - "source_file": "Server/migrations/024_channel_user_overrides.sql", - "source_location": "L16", - "_origin": "ast", - "id": "server_migrations_024_channel_user_overrides_channel_user_overrides", - "community": 133, - "community_name": "users", - "norm_label": "channel_user_overrides" - }, - { - "label": "030_attachments_unlink_on_message_delete.sql", - "file_type": "code", - "source_file": "Server/migrations/030_attachments_unlink_on_message_delete.sql", - "source_location": null, - "_origin": "ast", - "id": "server_migrations_030_attachments_unlink_on_message_delete", - "community": 133, - "community_name": "users", - "norm_label": "030_attachments_unlink_on_message_delete.sql" - }, - { - "label": "attachments_v030", - "file_type": "code", - "source_file": "Server/migrations/030_attachments_unlink_on_message_delete.sql", - "source_location": "L23", - "_origin": "ast", - "id": "server_migrations_030_attachments_unlink_on_message_delete_attachments_v030", - "community": 133, - "community_name": "users", - "norm_label": "attachments_v030" - }, - { - "label": "adminContextKey", - "file_type": "code", - "source_file": "Server/admin/types.go", - "source_location": "L12", - "_origin": "ast", - "id": "admin_admincontextkey", - "community": 134, - "community_name": "User", - "norm_label": "admincontextkey" - }, - { - "label": "adminMeResponse", - "file_type": "code", - "source_file": "Server/admin/types.go", - "source_location": "L109", - "_origin": "ast", - "id": "admin_adminmeresponse", - "community": 134, - "community_name": "User", - "norm_label": "adminmeresponse" - }, - { - "label": "adminUserResponse", - "file_type": "code", - "source_file": "Server/admin/types.go", - "source_location": "L90", - "_origin": "ast", - "id": "admin_adminuserresponse", - "community": 134, - "community_name": "User", - "norm_label": "adminuserresponse" - }, - { - "label": "fakeStore", - "file_type": "code", - "source_file": "Server/auth/resolve_test.go", - "source_location": "L16", - "_origin": "ast", - "id": "auth_fakestore", - "community": 134, - "community_name": "User", - "norm_label": "fakestore" - }, - { - "label": ".GetActiveAPIToken()", - "file_type": "code", - "source_file": "Server/auth/resolve_test.go", - "source_location": "L33", - "_origin": "ast", - "id": "auth_fakestore_getactiveapitoken", - "community": 134, - "community_name": "User", - "norm_label": ".getactiveapitoken()" - }, - { - "label": ".GetRoleByID()", - "file_type": "code", - "source_file": "Server/auth/resolve_test.go", - "source_location": "L42", - "_origin": "ast", - "id": "auth_fakestore_getrolebyid", - "community": 134, - "community_name": "User", - "norm_label": ".getrolebyid()" - }, - { - "label": ".GetSessionByTokenHash()", - "file_type": "code", - "source_file": "Server/auth/resolve_test.go", - "source_location": "L29", - "_origin": "ast", - "id": "auth_fakestore_getsessionbytokenhash", - "community": 134, - "community_name": "User", - "norm_label": ".getsessionbytokenhash()" - }, - { - "label": ".GetUserByID()", - "file_type": "code", - "source_file": "Server/auth/resolve_test.go", - "source_location": "L38", - "_origin": "ast", - "id": "auth_fakestore_getuserbyid", - "community": 134, - "community_name": "User", - "norm_label": ".getuserbyid()" - }, - { - "label": "tokenStore", - "file_type": "code", - "source_file": "Server/auth/resolve.go", - "source_location": "L13", - "_origin": "ast", - "id": "auth_tokenstore", - "community": 134, - "community_name": "User", - "norm_label": "tokenstore" - }, - { - "label": ".EffectiveDisplayName()", - "file_type": "code", - "source_file": "Server/db/models.go", - "source_location": "L37", - "_origin": "ast", - "id": "db_user_effectivedisplayname", - "community": 134, - "community_name": "User", - "norm_label": ".effectivedisplayname()" - }, - { - "label": "admin/middleware.go", - "file_type": "code", - "source_file": "Server/admin/middleware.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_admin_middleware", - "community": 134, - "community_name": "User", - "norm_label": "admin/middleware.go" - }, - { - "label": "adminAuthMiddleware()", - "file_type": "code", - "source_file": "Server/admin/middleware.go", - "source_location": "L33", - "_origin": "ast", - "id": "server_admin_middleware_adminauthmiddleware", - "community": 134, - "community_name": "User", - "norm_label": "adminauthmiddleware()" - }, - { - "label": "RequireAdminAuth()", - "file_type": "code", - "source_file": "Server/admin/middleware.go", - "source_location": "L19", - "_origin": "ast", - "id": "server_admin_middleware_requireadminauth", - "community": 134, - "community_name": "User", - "norm_label": "requireadminauth()" - }, - { - "label": "requirePerm()", - "file_type": "code", - "source_file": "Server/admin/middleware.go", - "source_location": "L91", - "_origin": "ast", - "id": "server_admin_middleware_requireperm", - "community": 134, - "community_name": "User", - "norm_label": "requireperm()" - }, - { - "label": "types.go", - "file_type": "code", - "source_file": "Server/admin/types.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_admin_types", - "community": 134, - "community_name": "User", - "norm_label": "types.go" - }, - { - "label": "toAdminUserResponse()", - "file_type": "code", - "source_file": "Server/admin/types.go", - "source_location": "L122", - "_origin": "ast", - "id": "server_admin_types_toadminuserresponse", - "community": 134, - "community_name": "User", - "norm_label": "toadminuserresponse()" - }, - { - "label": "toAdminUserResponseFromUser()", - "file_type": "code", - "source_file": "Server/admin/types.go", - "source_location": "L140", - "_origin": "ast", - "id": "server_admin_types_toadminuserresponsefromuser", - "community": 134, - "community_name": "User", - "norm_label": "toadminuserresponsefromuser()" - }, - { - "label": "resolve.go", - "file_type": "code", - "source_file": "Server/auth/resolve.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_auth_resolve", - "community": 134, - "community_name": "User", - "norm_label": "resolve.go" - }, - { - "label": "ResolveTokenHash()", - "file_type": "code", - "source_file": "Server/auth/resolve.go", - "source_location": "L40", - "_origin": "ast", - "id": "server_auth_resolve_resolvetokenhash", - "community": 134, - "community_name": "User", - "norm_label": "resolvetokenhash()" - }, - { - "label": "resolve_test.go", - "file_type": "code", - "source_file": "Server/auth/resolve_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_auth_resolve_test", - "community": 134, - "community_name": "User", - "norm_label": "resolve_test.go" - }, - { - "label": "future()", - "file_type": "code", - "source_file": "Server/auth/resolve_test.go", - "source_location": "L46", - "_origin": "ast", - "id": "server_auth_resolve_test_future", - "community": 134, - "community_name": "User", - "norm_label": "future()" - }, - { - "label": "past()", - "file_type": "code", - "source_file": "Server/auth/resolve_test.go", - "source_location": "L47", - "_origin": "ast", - "id": "server_auth_resolve_test_past", - "community": 134, - "community_name": "User", - "norm_label": "past()" - }, - { - "label": "TestResolveTokenHash()", - "file_type": "code", - "source_file": "Server/auth/resolve_test.go", - "source_location": "L49", - "_origin": "ast", - "id": "server_auth_resolve_test_testresolvetokenhash", - "community": 134, - "community_name": "User", - "norm_label": "testresolvetokenhash()" - }, - { - "label": "db/models.go", - "file_type": "code", - "source_file": "Server/db/models.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_db_models", - "community": 134, - "community_name": "User", - "norm_label": "db/models.go" - }, - { - "label": "APIToken", - "file_type": "code", - "source_file": "Server/db/models.go", - "source_location": "L62", - "_origin": "ast", - "id": "server_db_models_go_db_apitoken", - "community": 134, - "community_name": "User", - "norm_label": "apitoken" - }, - { - "label": "Session", - "file_type": "code", - "source_file": "Server/db/models.go", - "source_location": "L48", - "_origin": "ast", - "id": "server_db_models_go_db_session", - "community": 134, - "community_name": "User", - "norm_label": "session" - }, - { - "label": "User", - "file_type": "code", - "source_file": "Server/db/models.go", - "source_location": "L6", - "_origin": "ast", - "id": "server_db_models_go_db_user", - "community": 134, - "community_name": "User", - "norm_label": "user" - }, - { - "label": "UserWithRole", - "file_type": "code", - "source_file": "Server/db/models.go", - "source_location": "L269", - "_origin": "ast", - "id": "server_db_models_go_db_userwithrole", - "community": 134, - "community_name": "User", - "norm_label": "userwithrole" - }, - { - "label": "client.go", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_client", - "community": 134, - "community_name": "User", - "norm_label": "client.go" - }, - { - "label": "Hub", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "server_ws_client_go_hub", - "community": 134, - "community_name": "User", - "norm_label": "hub" - }, - { - "label": "Client", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L25", - "_origin": "ast", - "id": "server_ws_client_go_ws_client", - "community": 134, - "community_name": "User", - "norm_label": "client" - }, - { - "label": "newClient()", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L76", - "_origin": "ast", - "id": "server_ws_client_newclient", - "community": 134, - "community_name": "User", - "norm_label": "newclient()" - }, - { - "label": "serve_auth.go", - "file_type": "code", - "source_file": "Server/ws/serve_auth.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_ws_serve_auth", - "community": 134, - "community_name": "User", - "norm_label": "serve_auth.go" - }, - { - "label": "authenticateConn()", - "file_type": "code", - "source_file": "Server/ws/serve_auth.go", - "source_location": "L26", - "_origin": "ast", - "id": "server_ws_serve_auth_authenticateconn", - "community": 134, - "community_name": "User", - "norm_label": "authenticateconn()" - }, - { - "label": ".ListSessions()", - "file_type": "code", - "source_file": "Server/service/user.go", - "source_location": "L282", - "_origin": "ast", - "id": "service_userservice_listsessions", - "community": 134, - "community_name": "User", - "norm_label": ".listsessions()" - }, - { - "label": ".clearVoiceChID()", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L143", - "_origin": "ast", - "id": "ws_client_clearvoicechid", - "community": 134, - "community_name": "User", - "norm_label": ".clearvoicechid()" - }, - { - "label": ".clearVoiceState()", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L148", - "_origin": "ast", - "id": "ws_client_clearvoicestate", - "community": 134, - "community_name": "User", - "norm_label": ".clearvoicestate()" - }, - { - "label": ".clearVoiceStateIfMatch()", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L164", - "_origin": "ast", - "id": "ws_client_clearvoicestateifmatch", - "community": 134, - "community_name": "User", - "norm_label": ".clearvoicestateifmatch()" - }, - { - "label": ".closeAllSendLocked()", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L314", - "_origin": "ast", - "id": "ws_client_closeallsendlocked", - "community": 134, - "community_name": "User", - "norm_label": ".closeallsendlocked()" - }, - { - "label": ".closeSend()", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L300", - "_origin": "ast", - "id": "ws_client_closesend", - "community": 134, - "community_name": "User", - "norm_label": ".closesend()" - }, - { - "label": ".getChannelID()", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L116", - "_origin": "ast", - "id": "ws_client_getchannelid", - "community": 134, - "community_name": "User", - "norm_label": ".getchannelid()" - }, - { - "label": ".getE2EEPubKey()", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L188", - "_origin": "ast", - "id": "ws_client_gete2eepubkey", - "community": 134, - "community_name": "User", - "norm_label": ".gete2eepubkey()" - }, - { - "label": ".getLastActivity()", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L109", - "_origin": "ast", - "id": "ws_client_getlastactivity", - "community": 134, - "community_name": "User", - "norm_label": ".getlastactivity()" - }, - { - "label": ".GetTokenHash()", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L96", - "_origin": "ast", - "id": "ws_client_gettokenhash", - "community": 134, - "community_name": "User", - "norm_label": ".gettokenhash()" - }, - { - "label": ".getVoiceChID()", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L123", - "_origin": "ast", - "id": "ws_client_getvoicechid", - "community": 134, - "community_name": "User", - "norm_label": ".getvoicechid()" - }, - { - "label": ".getVoiceState()", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L129", - "_origin": "ast", - "id": "ws_client_getvoicestate", - "community": 134, - "community_name": "User", - "norm_label": ".getvoicestate()" - }, - { - "label": ".isSendClosed()", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L307", - "_origin": "ast", - "id": "ws_client_issendclosed", - "community": 134, - "community_name": "User", - "norm_label": ".issendclosed()" - }, - { - "label": ".sendHighMsg()", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L221", - "_origin": "ast", - "id": "ws_client_sendhighmsg", - "community": 134, - "community_name": "User", - "norm_label": ".sendhighmsg()" - }, - { - "label": ".sendLowMsg()", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L253", - "_origin": "ast", - "id": "ws_client_sendlowmsg", - "community": 134, - "community_name": "User", - "norm_label": ".sendlowmsg()" - }, - { - "label": ".sendMsg()", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L197", - "_origin": "ast", - "id": "ws_client_sendmsg", - "community": 134, - "community_name": "User", - "norm_label": ".sendmsg()" - }, - { - "label": ".setE2EEPubKey()", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L180", - "_origin": "ast", - "id": "ws_client_sete2eepubkey", - "community": 134, - "community_name": "User", - "norm_label": ".sete2eepubkey()" - }, - { - "label": ".setVoiceState()", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L135", - "_origin": "ast", - "id": "ws_client_setvoicestate", - "community": 134, - "community_name": "User", - "norm_label": ".setvoicestate()" - }, - { - "label": ".touch()", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L101", - "_origin": "ast", - "id": "ws_client_touch", - "community": 134, - "community_name": "User", - "norm_label": ".touch()" - }, - { - "label": ".trySendMsg()", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L276", - "_origin": "ast", - "id": "ws_client_trysendmsg", - "community": 134, - "community_name": "User", - "norm_label": ".trysendmsg()" - }, - { - "label": ".upgradeAndAuth()", - "file_type": "code", - "source_file": "Server/ws/serve.go", - "source_location": "L121", - "_origin": "ast", - "id": "ws_hub_upgradeandauth", - "community": 134, - "community_name": "User", - "norm_label": ".upgradeandauth()" - }, - { - "label": "resumeHint", - "file_type": "code", - "source_file": "Server/ws/serve_auth.go", - "source_location": "L21", - "_origin": "ast", - "id": "ws_resumehint", - "community": 134, - "community_name": "User", - "norm_label": "resumehint" - }, - { - "label": "wsConn", - "file_type": "code", - "source_file": "Server/ws/client.go", - "source_location": "L73", - "_origin": "ast", - "id": "ws_wsconn", - "community": 134, - "community_name": "User", - "norm_label": "wsconn" - }, - { - "label": "update_commands.rs", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/update_commands.rs", - "source_location": "L1", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_update_commands", - "community": 135, - "community_name": "update_commands.rs", - "norm_label": "update_commands.rs" - }, - { - "label": "build_tls_config()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/update_commands.rs", - "source_location": "L44", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_update_commands_build_tls_config", - "community": 135, - "community_name": "update_commands.rs", - "norm_label": "build_tls_config()" - }, - { - "label": "build_update_endpoint()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/update_commands.rs", - "source_location": "L74", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_update_commands_build_update_endpoint", - "community": 135, - "community_name": "update_commands.rs", - "norm_label": "build_update_endpoint()" - }, - { - "label": "build_updater()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/update_commands.rs", - "source_location": "L85", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_update_commands_build_updater", - "community": 135, - "community_name": "update_commands.rs", - "norm_label": "build_updater()" - }, - { - "label": "check_client_update()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/update_commands.rs", - "source_location": "L138", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_update_commands_check_client_update", - "community": 135, - "community_name": "update_commands.rs", - "norm_label": "check_client_update()" - }, - { - "label": "download_and_install_update()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/update_commands.rs", - "source_location": "L167", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_update_commands_download_and_install_update", - "community": 135, - "community_name": "update_commands.rs", - "norm_label": "download_and_install_update()" - }, - { - "label": "DownloadProgress", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/update_commands.rs", - "source_location": "L19", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_update_commands_downloadprogress", - "community": 135, - "community_name": "update_commands.rs", - "norm_label": "downloadprogress" - }, - { - "label": "endpoint_includes_target_arch_and_bundle_type_variables()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/update_commands.rs", - "source_location": "L205", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_update_commands_endpoint_includes_target_arch_and_bundle_type_variables", - "community": 135, - "community_name": "update_commands.rs", - "norm_label": "endpoint_includes_target_arch_and_bundle_type_variables()" - }, - { - "label": "endpoint_keeps_non_default_port()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/update_commands.rs", - "source_location": "L217", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_update_commands_endpoint_keeps_non_default_port", - "community": 135, - "community_name": "update_commands.rs", - "norm_label": "endpoint_keeps_non_default_port()" - }, - { - "label": "extract_host_for_cert_store()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/update_commands.rs", - "source_location": "L25", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_update_commands_extract_host_for_cert_store", - "community": 135, - "community_name": "update_commands.rs", - "norm_label": "extract_host_for_cert_store()" - }, - { - "label": "AppHandle", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_update_commands_rs_apphandle", - "community": 135, - "community_name": "update_commands.rs", - "norm_label": "apphandle" - }, - { - "label": "Option", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_update_commands_rs_option", - "community": 135, - "community_name": "update_commands.rs", - "norm_label": "option" - }, - { - "label": "String", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_update_commands_rs_string", - "community": 135, - "community_name": "update_commands.rs", - "norm_label": "string" - }, - { - "label": "Updater", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_update_commands_rs_updater", - "community": 135, - "community_name": "update_commands.rs", - "norm_label": "updater" - }, - { - "label": "UpdateCheckResult", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/update_commands.rs", - "source_location": "L9", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_update_commands_updatecheckresult", - "community": 135, - "community_name": "update_commands.rs", - "norm_label": "updatecheckresult" - }, - { - "label": "validate_server_url()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/update_commands.rs", - "source_location": "L120", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_update_commands_validate_server_url", - "community": 135, - "community_name": "update_commands.rs", - "norm_label": "validate_server_url()" - }, - { - "label": "validate_server_url_accepts_plain_https()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/update_commands.rs", - "source_location": "L249", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_update_commands_validate_server_url_accepts_plain_https", - "community": 135, - "community_name": "update_commands.rs", - "norm_label": "validate_server_url_accepts_plain_https()" - }, - { - "label": "validate_server_url_rejects_unsafe_urls()", - "file_type": "code", - "source_file": "Client/tauri-client/src-tauri/src/update_commands.rs", - "source_location": "L225", - "_origin": "ast", - "id": "client_tauri_client_src_tauri_src_update_commands_validate_server_url_rejects_unsafe_urls", - "community": 135, - "community_name": "update_commands.rs", - "norm_label": "validate_server_url_rejects_unsafe_urls()" - }, - { - "label": "ClientConfig", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "clientconfig", - "community": 135, - "community_name": "update_commands.rs", - "norm_label": "clientconfig" - }, - { - "label": "BanUserParams", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L17", - "_origin": "ast", - "id": "dbgen_banuserparams", - "community": 136, - "community_name": "Queries", - "norm_label": "banuserparams" - }, - { - "label": "CreateUserParams", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L54", - "_origin": "ast", - "id": "dbgen_createuserparams", - "community": 136, - "community_name": "Queries", - "norm_label": "createuserparams" - }, - { - "label": "ListMembersRow", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L135", - "_origin": "ast", - "id": "dbgen_listmembersrow", - "community": 136, - "community_name": "Queries", - "norm_label": "listmembersrow" - }, - { - "label": ".BanUser()", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L23", - "_origin": "ast", - "id": "dbgen_queries_banuser", - "community": 136, - "community_name": "Queries", - "norm_label": ".banuser()" - }, - { - "label": ".CountUsers()", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L32", - "_origin": "ast", - "id": "dbgen_queries_countusers", - "community": 136, - "community_name": "Queries", - "norm_label": ".countusers()" - }, - { - "label": ".CountUsersWithoutTOTP()", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L43", - "_origin": "ast", - "id": "dbgen_queries_countuserswithouttotp", - "community": 136, - "community_name": "Queries", - "norm_label": ".countuserswithouttotp()" - }, - { - "label": ".CreateUser()", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L60", - "_origin": "ast", - "id": "dbgen_queries_createuser", - "community": 136, - "community_name": "Queries", - "norm_label": ".createuser()" - }, - { - "label": ".GetUserByID()", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L71", - "_origin": "ast", - "id": "dbgen_queries_getuserbyid", - "community": 136, - "community_name": "Queries", - "norm_label": ".getuserbyid()" - }, - { - "label": ".GetUserByUsername()", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L102", - "_origin": "ast", - "id": "dbgen_queries_getuserbyusername", - "community": 136, - "community_name": "Queries", - "norm_label": ".getuserbyusername()" - }, - { - "label": ".ListMembers()", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L151", - "_origin": "ast", - "id": "dbgen_queries_listmembers", - "community": 136, - "community_name": "Queries", - "norm_label": ".listmembers()" - }, - { - "label": ".MarkUserDisconnected()", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L195", - "_origin": "ast", - "id": "dbgen_queries_markuserdisconnected", - "community": 136, - "community_name": "Queries", - "norm_label": ".markuserdisconnected()" - }, - { - "label": ".ResetAllUserStatuses()", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L207", - "_origin": "ast", - "id": "dbgen_queries_resetalluserstatuses", - "community": 136, - "community_name": "Queries", - "norm_label": ".resetalluserstatuses()" - }, - { - "label": ".UnbanUser()", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L216", - "_origin": "ast", - "id": "dbgen_queries_unbanuser", - "community": 136, - "community_name": "Queries", - "norm_label": ".unbanuser()" - }, - { - "label": ".UpdateUserIdentityKey()", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L230", - "_origin": "ast", - "id": "dbgen_queries_updateuseridentitykey", - "community": 136, - "community_name": "Queries", - "norm_label": ".updateuseridentitykey()" - }, - { - "label": ".UpdateUserStatus()", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L244", - "_origin": "ast", - "id": "dbgen_queries_updateuserstatus", - "community": 136, - "community_name": "Queries", - "norm_label": ".updateuserstatus()" - }, - { - "label": ".UpdateUserTOTPSecret()", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L258", - "_origin": "ast", - "id": "dbgen_queries_updateusertotpsecret", - "community": 136, - "community_name": "Queries", - "norm_label": ".updateusertotpsecret()" - }, - { - "label": "UpdateUserIdentityKeyParams", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L225", - "_origin": "ast", - "id": "dbgen_updateuseridentitykeyparams", - "community": 136, - "community_name": "Queries", - "norm_label": "updateuseridentitykeyparams" - }, - { - "label": "UpdateUserStatusParams", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L239", - "_origin": "ast", - "id": "dbgen_updateuserstatusparams", - "community": 136, - "community_name": "Queries", - "norm_label": "updateuserstatusparams" - }, - { - "label": "UpdateUserTOTPSecretParams", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L253", - "_origin": "ast", - "id": "dbgen_updateusertotpsecretparams", - "community": 136, - "community_name": "Queries", - "norm_label": "updateusertotpsecretparams" - }, - { - "label": "users.sql.go", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_db_dbgen_users_sql", - "community": 136, - "community_name": "Queries", - "norm_label": "users.sql.go" - }, - { - "label": "Queries", - "file_type": "code", - "source_file": "Server/db/dbgen/users.sql.go", - "source_location": "L23", - "_origin": "ast", - "id": "server_db_dbgen_users_sql_go_dbgen_queries", - "community": 136, - "community_name": "Queries", - "norm_label": "queries" - }, - { - "label": "User", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "server_db_dbgen_users_sql_go_user", - "community": 136, - "community_name": "Queries", - "norm_label": "user" - }, - { - "label": "CloseDMParams", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L16", - "_origin": "ast", - "id": "dbgen_closedmparams", - "community": 137, - "community_name": "Queries", - "norm_label": "closedmparams" - }, - { - "label": "GetDMParticipantsForUserRow", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L129", - "_origin": "ast", - "id": "dbgen_getdmparticipantsforuserrow", - "community": 137, - "community_name": "Queries", - "norm_label": "getdmparticipantsforuserrow" - }, - { - "label": "GetDMParticipantsRow", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L77", - "_origin": "ast", - "id": "dbgen_getdmparticipantsrow", - "community": 137, - "community_name": "Queries", - "norm_label": "getdmparticipantsrow" - }, - { - "label": "GetUserDMChannelsRow", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L220", - "_origin": "ast", - "id": "dbgen_getuserdmchannelsrow", - "community": 137, - "community_name": "Queries", - "norm_label": "getuserdmchannelsrow" - }, - { - "label": "IsDMParticipantParams", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L269", - "_origin": "ast", - "id": "dbgen_isdmparticipantparams", - "community": 137, - "community_name": "Queries", - "norm_label": "isdmparticipantparams" - }, - { - "label": "OpenDMParams", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L296", - "_origin": "ast", - "id": "dbgen_opendmparams", - "community": 137, - "community_name": "Queries", - "norm_label": "opendmparams" - }, - { - "label": ".CloseDM()", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L21", - "_origin": "ast", - "id": "dbgen_queries_closedm", - "community": 137, - "community_name": "Queries", - "norm_label": ".closedm()" - }, - { - "label": ".CountDMParticipants()", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L30", - "_origin": "ast", - "id": "dbgen_queries_countdmparticipants", - "community": 137, - "community_name": "Queries", - "norm_label": ".countdmparticipants()" - }, - { - "label": ".GetDMParticipantIDs()", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L41", - "_origin": "ast", - "id": "dbgen_queries_getdmparticipantids", - "community": 137, - "community_name": "Queries", - "norm_label": ".getdmparticipantids()" - }, - { - "label": ".GetDMParticipants()", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L85", - "_origin": "ast", - "id": "dbgen_queries_getdmparticipants", - "community": 137, - "community_name": "Queries", - "norm_label": ".getdmparticipants()" - }, - { - "label": ".GetDMParticipantsForUser()", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L141", - "_origin": "ast", - "id": "dbgen_queries_getdmparticipantsforuser", - "community": 137, - "community_name": "Queries", - "norm_label": ".getdmparticipantsforuser()" - }, - { - "label": ".GetUserDMChannelIDs()", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L175", - "_origin": "ast", - "id": "dbgen_queries_getuserdmchannelids", - "community": 137, - "community_name": "Queries", - "norm_label": ".getuserdmchannelids()" - }, - { - "label": ".GetUserDMChannels()", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L234", - "_origin": "ast", - "id": "dbgen_queries_getuserdmchannels", - "community": 137, - "community_name": "Queries", - "norm_label": ".getuserdmchannels()" - }, - { - "label": ".IsDMParticipant()", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L274", - "_origin": "ast", - "id": "dbgen_queries_isdmparticipant", - "community": 137, - "community_name": "Queries", - "norm_label": ".isdmparticipant()" - }, - { - "label": ".IsGroupDM()", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L285", - "_origin": "ast", - "id": "dbgen_queries_isgroupdm", - "community": 137, - "community_name": "Queries", - "norm_label": ".isgroupdm()" - }, - { - "label": ".OpenDM()", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L301", - "_origin": "ast", - "id": "dbgen_queries_opendm", - "community": 137, - "community_name": "Queries", - "norm_label": ".opendm()" - }, - { - "label": ".RemoveDMParticipant()", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L318", - "_origin": "ast", - "id": "dbgen_queries_removedmparticipant", - "community": 137, - "community_name": "Queries", - "norm_label": ".removedmparticipant()" - }, - { - "label": ".SetDMChannelName()", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L332", - "_origin": "ast", - "id": "dbgen_queries_setdmchannelname", - "community": 137, - "community_name": "Queries", - "norm_label": ".setdmchannelname()" - }, - { - "label": "RemoveDMParticipantParams", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L313", - "_origin": "ast", - "id": "dbgen_removedmparticipantparams", - "community": 137, - "community_name": "Queries", - "norm_label": "removedmparticipantparams" - }, - { - "label": "SetDMChannelNameParams", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L327", - "_origin": "ast", - "id": "dbgen_setdmchannelnameparams", - "community": 137, - "community_name": "Queries", - "norm_label": "setdmchannelnameparams" - }, - { - "label": "dm.sql.go", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_db_dbgen_dm_sql", - "community": 137, - "community_name": "Queries", - "norm_label": "dm.sql.go" - }, - { - "label": "Queries", - "file_type": "code", - "source_file": "Server/db/dbgen/dm.sql.go", - "source_location": "L21", - "_origin": "ast", - "id": "server_db_dbgen_dm_sql_go_dbgen_queries", - "community": 137, - "community_name": "Queries", - "norm_label": "queries" - }, - { - "label": "GetAuditLogParams", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L90", - "_origin": "ast", - "id": "dbgen_getauditlogparams", - "community": 138, - "community_name": "Queries", - "norm_label": "getauditlogparams" - }, - { - "label": "GetAuditLogRow", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L95", - "_origin": "ast", - "id": "dbgen_getauditlogrow", - "community": 138, - "community_name": "Queries", - "norm_label": "getauditlogrow" - }, - { - "label": "ListAllUsersParams", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L197", - "_origin": "ast", - "id": "dbgen_listallusersparams", - "community": 138, - "community_name": "Queries", - "norm_label": "listallusersparams" - }, - { - "label": "ListAllUsersRow", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L202", - "_origin": "ast", - "id": "dbgen_listallusersrow", - "community": 138, - "community_name": "Queries", - "norm_label": "listallusersrow" - }, - { - "label": "LogAuditParams", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L256", - "_origin": "ast", - "id": "dbgen_logauditparams", - "community": 138, - "community_name": "Queries", - "norm_label": "logauditparams" - }, - { - "label": ".CountActiveInvites()", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L16", - "_origin": "ast", - "id": "dbgen_queries_countactiveinvites", - "community": 138, - "community_name": "Queries", - "norm_label": ".countactiveinvites()" - }, - { - "label": ".CountActiveMessages()", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L27", - "_origin": "ast", - "id": "dbgen_queries_countactivemessages", - "community": 138, - "community_name": "Queries", - "norm_label": ".countactivemessages()" - }, - { - "label": ".CountChannels()", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L38", - "_origin": "ast", - "id": "dbgen_queries_countchannels", - "community": 138, - "community_name": "Queries", - "norm_label": ".countchannels()" - }, - { - "label": ".ForceLogoutUser()", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L49", - "_origin": "ast", - "id": "dbgen_queries_forcelogoutuser", - "community": 138, - "community_name": "Queries", - "norm_label": ".forcelogoutuser()" - }, - { - "label": ".GetAuditLog()", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L106", - "_origin": "ast", - "id": "dbgen_queries_getauditlog", - "community": 138, - "community_name": "Queries", - "norm_label": ".getauditlog()" - }, - { - "label": ".GetSetting()", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L142", - "_origin": "ast", - "id": "dbgen_queries_getsetting", - "community": 138, - "community_name": "Queries", - "norm_label": ".getsetting()" - }, - { - "label": ".GetUserSessions()", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L155", - "_origin": "ast", - "id": "dbgen_queries_getusersessions", - "community": 138, - "community_name": "Queries", - "norm_label": ".getusersessions()" - }, - { - "label": ".ListAllUsers()", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L216", - "_origin": "ast", - "id": "dbgen_queries_listallusers", - "community": 138, - "community_name": "Queries", - "norm_label": ".listallusers()" - }, - { - "label": ".LogAudit()", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L264", - "_origin": "ast", - "id": "dbgen_queries_logaudit", - "community": 138, - "community_name": "Queries", - "norm_label": ".logaudit()" - }, - { - "label": ".SetSetting()", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L285", - "_origin": "ast", - "id": "dbgen_queries_setsetting", - "community": 138, - "community_name": "Queries", - "norm_label": ".setsetting()" - }, - { - "label": ".UpdateUserRole()", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L299", - "_origin": "ast", - "id": "dbgen_queries_updateuserrole", - "community": 138, - "community_name": "Queries", - "norm_label": ".updateuserrole()" - }, - { - "label": ".UserCount()", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L308", - "_origin": "ast", - "id": "dbgen_queries_usercount", - "community": 138, - "community_name": "Queries", - "norm_label": ".usercount()" - }, - { - "label": "SetSettingParams", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L280", - "_origin": "ast", - "id": "dbgen_setsettingparams", - "community": 138, - "community_name": "Queries", - "norm_label": "setsettingparams" - }, - { - "label": "UpdateUserRoleParams", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L294", - "_origin": "ast", - "id": "dbgen_updateuserroleparams", - "community": 138, - "community_name": "Queries", - "norm_label": "updateuserroleparams" - }, - { - "label": "admin.sql.go", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_db_dbgen_admin_sql", - "community": 138, - "community_name": "Queries", - "norm_label": "admin.sql.go" - }, - { - "label": "Queries", - "file_type": "code", - "source_file": "Server/db/dbgen/admin.sql.go", - "source_location": "L16", - "_origin": "ast", - "id": "server_db_dbgen_admin_sql_go_dbgen_queries", - "community": 138, - "community_name": "Queries", - "norm_label": "queries" - }, - { - "label": "Session", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "server_db_dbgen_admin_sql_go_session", - "community": 138, - "community_name": "Queries", - "norm_label": "session" - }, - { - "label": "handleListUsers()", - "file_type": "code", - "source_file": "Server/admin/handlers_users.go", - "source_location": "L31", - "_origin": "ast", - "id": "server_admin_handlers_users_handlelistusers", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "handlelistusers()" - }, - { - "label": "helpers_internal_test.go", - "file_type": "code", - "source_file": "Server/admin/helpers_internal_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_admin_helpers_internal_test", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "helpers_internal_test.go" - }, - { - "label": "TestQueryInt_LimitStillCapped()", - "file_type": "code", - "source_file": "Server/admin/helpers_internal_test.go", - "source_location": "L19", - "_origin": "ast", - "id": "server_admin_helpers_internal_test_testqueryint_limitstillcapped", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "testqueryint_limitstillcapped()" - }, - { - "label": "TestQueryInt_OffsetNotClampedByLimitCap()", - "file_type": "code", - "source_file": "Server/admin/helpers_internal_test.go", - "source_location": "L12", - "_origin": "ast", - "id": "server_admin_helpers_internal_test_testqueryint_offsetnotclampedbylimitcap", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "testqueryint_offsetnotclampedbylimitcap()" - }, - { - "label": "queryInt()", - "file_type": "code", - "source_file": "Server/admin/helpers.go", - "source_location": "L42", - "_origin": "ast", - "id": "server_admin_helpers_queryint", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "queryint()" - }, - { - "label": "middleware_and_spawn_test.go", - "file_type": "code", - "source_file": "Server/admin/middleware_and_spawn_test.go", - "source_location": "L1", - "_origin": "ast", - "id": "server_admin_middleware_and_spawn_test", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "middleware_and_spawn_test.go" - }, - { - "label": "isolateSpawnedTestBinary()", - "file_type": "code", - "source_file": "Server/admin/middleware_and_spawn_test.go", - "source_location": "L443", - "_origin": "ast", - "id": "server_admin_middleware_and_spawn_test_isolatespawnedtestbinary", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "isolatespawnedtestbinary()" - }, - { - "label": "openWhiteboxTestDB()", - "file_type": "code", - "source_file": "Server/admin/middleware_and_spawn_test.go", - "source_location": "L23", - "_origin": "ast", - "id": "server_admin_middleware_and_spawn_test_openwhiteboxtestdb", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "openwhiteboxtestdb()" - }, - { - "label": "TestAdminAuthMiddleware_RoleNotFound()", - "file_type": "code", - "source_file": "Server/admin/middleware_and_spawn_test.go", - "source_location": "L263", - "_origin": "ast", - "id": "server_admin_middleware_and_spawn_test_testadminauthmiddleware_rolenotfound", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "testadminauthmiddleware_rolenotfound()" - }, - { - "label": "TestHandleGetAuditLog_DBError()", - "file_type": "code", - "source_file": "Server/admin/middleware_and_spawn_test.go", - "source_location": "L376", - "_origin": "ast", - "id": "server_admin_middleware_and_spawn_test_testhandlegetauditlog_dberror", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "testhandlegetauditlog_dberror()" - }, - { - "label": "TestHandleGetSettings_DBError()", - "file_type": "code", - "source_file": "Server/admin/middleware_and_spawn_test.go", - "source_location": "L342", - "_origin": "ast", - "id": "server_admin_middleware_and_spawn_test_testhandlegetsettings_dberror", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "testhandlegetsettings_dberror()" - }, - { - "label": "TestHandleGetStats_DBError()", - "file_type": "code", - "source_file": "Server/admin/middleware_and_spawn_test.go", - "source_location": "L306", - "_origin": "ast", - "id": "server_admin_middleware_and_spawn_test_testhandlegetstats_dberror", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "testhandlegetstats_dberror()" - }, - { - "label": "TestHandleListChannels_DBError()", - "file_type": "code", - "source_file": "Server/admin/middleware_and_spawn_test.go", - "source_location": "L325", - "_origin": "ast", - "id": "server_admin_middleware_and_spawn_test_testhandlelistchannels_dberror", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "testhandlelistchannels_dberror()" - }, - { - "label": "TestHandleListUsers_DBError()", - "file_type": "code", - "source_file": "Server/admin/middleware_and_spawn_test.go", - "source_location": "L393", - "_origin": "ast", - "id": "server_admin_middleware_and_spawn_test_testhandlelistusers_dberror", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "testhandlelistusers_dberror()" - }, - { - "label": "TestHandleSetupStatus_DBError()", - "file_type": "code", - "source_file": "Server/admin/middleware_and_spawn_test.go", - "source_location": "L359", - "_origin": "ast", - "id": "server_admin_middleware_and_spawn_test_testhandlesetupstatus_dberror", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "testhandlesetupstatus_dberror()" - }, - { - "label": "TestOwnerOnlyMiddleware_NoUserInContext()", - "file_type": "code", - "source_file": "Server/admin/middleware_and_spawn_test.go", - "source_location": "L142", - "_origin": "ast", - "id": "server_admin_middleware_and_spawn_test_testowneronlymiddleware_nouserincontext", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "testowneronlymiddleware_nouserincontext()" - }, - { - "label": "TestOwnerOnlyMiddleware_OwnerPassesThrough()", - "file_type": "code", - "source_file": "Server/admin/middleware_and_spawn_test.go", - "source_location": "L226", - "_origin": "ast", - "id": "server_admin_middleware_and_spawn_test_testowneronlymiddleware_ownerpassesthrough", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "testowneronlymiddleware_ownerpassesthrough()" - }, - { - "label": "TestOwnerOnlyMiddleware_RoleNotFound()", - "file_type": "code", - "source_file": "Server/admin/middleware_and_spawn_test.go", - "source_location": "L168", - "_origin": "ast", - "id": "server_admin_middleware_and_spawn_test_testowneronlymiddleware_rolenotfound", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "testowneronlymiddleware_rolenotfound()" - }, - { - "label": "TestSpawnDetached_CommandConstruction()", - "file_type": "code", - "source_file": "Server/admin/middleware_and_spawn_test.go", - "source_location": "L505", - "_origin": "ast", - "id": "server_admin_middleware_and_spawn_test_testspawndetached_commandconstruction", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "testspawndetached_commandconstruction()" - }, - { - "label": "TestSpawnDetached_InvalidExecutable()", - "file_type": "code", - "source_file": "Server/admin/middleware_and_spawn_test.go", - "source_location": "L472", - "_origin": "ast", - "id": "server_admin_middleware_and_spawn_test_testspawndetached_invalidexecutable", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "testspawndetached_invalidexecutable()" - }, - { - "label": "TestSpawnDetached_SetsWindowsFlags()", - "file_type": "code", - "source_file": "Server/admin/middleware_and_spawn_test.go", - "source_location": "L482", - "_origin": "ast", - "id": "server_admin_middleware_and_spawn_test_testspawndetached_setswindowsflags", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "testspawndetached_setswindowsflags()" - }, - { - "label": "TestSpawnDetached_ValidExecutable()", - "file_type": "code", - "source_file": "Server/admin/middleware_and_spawn_test.go", - "source_location": "L453", - "_origin": "ast", - "id": "server_admin_middleware_and_spawn_test_testspawndetached_validexecutable", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "testspawndetached_validexecutable()" - }, - { - "label": "ownerOnlyMiddleware()", - "file_type": "code", - "source_file": "Server/admin/middleware.go", - "source_location": "L112", - "_origin": "ast", - "id": "server_admin_middleware_owneronlymiddleware", - "community": 139, - "community_name": "middleware_and_spawn_test.go", - "norm_label": "owneronlymiddleware()" - }, - { - "label": "Fixed", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L7", - "_origin": "ast", - "id": "superpowers_findings_fixed", - "community": 14, - "community_name": "Fixed", - "norm_label": "fixed" - }, - { - "label": "OC-0001 \u2014 high \u2014 Wrapped room keys have no freshness binding, so old offers replay forever", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L9", - "_origin": "ast", - "id": "superpowers_findings_oc_0001_high_wrapped_room_keys_have_no_freshness_binding_so_old_offers_replay_forever", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0001 \u2014 high \u2014 wrapped room keys have no freshness binding, so old offers replay forever" - }, - { - "label": "OC-0002 \u2014 high \u2014 A dead E2EE worker is invisible; the Secured badge cannot detect it", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L21", - "_origin": "ast", - "id": "superpowers_findings_oc_0002_high_a_dead_e2ee_worker_is_invisible_the_secured_badge_cannot_detect_it", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0002 \u2014 high \u2014 a dead e2ee worker is invisible; the secured badge cannot detect it" - }, - { - "label": "OC-0003 \u2014 high \u2014 Unverified peers get no safety number, removing TOFU's only out-of-band escape hatch", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L33", - "_origin": "ast", - "id": "superpowers_findings_oc_0003_high_unverified_peers_get_no_safety_number_removing_tofu_s_only_out_of_band_escape_hatch", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0003 \u2014 high \u2014 unverified peers get no safety number, removing tofu's only out-of-band escape hatch" - }, - { - "label": "OC-0004 \u2014 medium \u2014 Key-holder promotion silently no-ops when the client's own voice_state has not arrived", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L45", - "_origin": "ast", - "id": "superpowers_findings_oc_0004_medium_key_holder_promotion_silently_no_ops_when_the_client_s_own_voice_state_has_not_arrived", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0004 \u2014 medium \u2014 key-holder promotion silently no-ops when the client's own voice_state has not arrived" - }, - { - "label": "OC-0005 \u2014 medium \u2014 Rotation offers exceed the server rate limit in large channels, permanently starving the same peers", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L57", - "_origin": "ast", - "id": "superpowers_findings_oc_0005_medium_rotation_offers_exceed_the_server_rate_limit_in_large_channels_permanently_starving_the_same_peers", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0005 \u2014 medium \u2014 rotation offers exceed the server rate limit in large channels, permanently starving the same peers" - }, - { - "label": "OC-0006 \u2014 medium \u2014 Both rotation paths call keyProvider.setKey with no session-generation guard", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L69", - "_origin": "ast", - "id": "superpowers_findings_oc_0006_medium_both_rotation_paths_call_keyprovider_setkey_with_no_session_generation_guard", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0006 \u2014 medium \u2014 both rotation paths call keyprovider.setkey with no session-generation guard" - }, - { - "label": "OC-0007 \u2014 medium \u2014 Reconnect reaches the Secured state without confirming the room key is current", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L81", - "_origin": "ast", - "id": "superpowers_findings_oc_0007_medium_reconnect_reaches_the_secured_state_without_confirming_the_room_key_is_current", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0007 \u2014 medium \u2014 reconnect reaches the secured state without confirming the room key is current" - }, - { - "label": "OC-0008 \u2014 medium \u2014 restoreLocalVoiceState has no internal supersession guard", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L93", - "_origin": "ast", - "id": "superpowers_findings_oc_0008_medium_restorelocalvoicestate_has_no_internal_supersession_guard", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0008 \u2014 medium \u2014 restorelocalvoicestate has no internal supersession guard" - }, - { - "label": "OC-0009 \u2014 low \u2014 attemptAutoReconnect's tail has no supersession checkpoints after connected", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L105", - "_origin": "ast", - "id": "superpowers_findings_oc_0009_low_attemptautoreconnect_s_tail_has_no_supersession_checkpoints_after_connected", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0009 \u2014 low \u2014 attemptautoreconnect's tail has no supersession checkpoints after connected" - }, - { - "label": "OC-0010 \u2014 low \u2014 handleOfferInner and handleAnnounceInner re-check generation before their final await, not after", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L117", - "_origin": "ast", - "id": "superpowers_findings_oc_0010_low_handleofferinner_and_handleannounceinner_re_check_generation_before_their_final_await_not_after", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0010 \u2014 low \u2014 handleofferinner and handleannounceinner re-check generation before their final await, not after" - }, - { - "label": "OC-0011 \u2014 low \u2014 A replayed announce overwrites a peer's live ephemeral key", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L129", - "_origin": "ast", - "id": "superpowers_findings_oc_0011_low_a_replayed_announce_overwrites_a_peer_s_live_ephemeral_key", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0011 \u2014 low \u2014 a replayed announce overwrites a peer's live ephemeral key" - }, - { - "label": "OC-0012 \u2014 low \u2014 CleanupVoiceForChannel never clears voiceKeyHolders", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L141", - "_origin": "ast", - "id": "superpowers_findings_oc_0012_low_cleanupvoiceforchannel_never_clears_voicekeyholders", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0012 \u2014 low \u2014 cleanupvoiceforchannel never clears voicekeyholders" - }, - { - "label": "OC-0013 \u2014 high \u2014 REST DM events never bump the visibility watermark \u2014 *ws.Hub does not implement dmVisibilityMarker", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L153", - "_origin": "ast", - "id": "superpowers_findings_oc_0013_high_rest_dm_events_never_bump_the_visibility_watermark_ws_hub_does_not_implement_dmvisibilitymarker", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0013 \u2014 high \u2014 rest dm events never bump the visibility watermark \u2014 *ws.hub does not implement dmvisibilitymarker" - }, - { - "label": "OC-0014 \u2014 high \u2014 Client refreshes the LiveKit token every 23 hours while the server mints it with a 5-minute TTL, so auto-reconnect fails for any voice session older than 5 minutes", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L176", - "_origin": "ast", - "id": "superpowers_findings_oc_0014_high_client_refreshes_the_livekit_token_every_23_hours_while_the_server_mints_it_with_a_5_minute_ttl_so_auto_reconnect_fails_for_any_voice_session_older_than_5_minutes", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0014 \u2014 high \u2014 client refreshes the livekit token every 23 hours while the server mints it with a 5-minute ttl, so auto-reconnect fails for any voice session older than 5 minutes" - }, - { - "label": "OC-0015 \u2014 high \u2014 A failed voice channel-switch leaves the client live in a voice call (mic hot, audio flowing) with the voice UI completely hidden and no way to leave", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L196", - "_origin": "ast", - "id": "superpowers_findings_oc_0015_high_a_failed_voice_channel_switch_leaves_the_client_live_in_a_voice_call_mic_hot_audio_flowing_with_the_voice_ui_completely_hidden_and_no_way_to_leave", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0015 \u2014 high \u2014 a failed voice channel-switch leaves the client live in a voice call (mic hot, audio flowing) with the voice ui completely hidden and no way to leave" - }, - { - "label": "OC-0016 \u2014 high \u2014 Re-opening a channel visited earlier in the session renders a permanently stale message window \u2014 loadMessages short-circuits on isChannelLoaded and nothing invalidates on switch", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L208", - "_origin": "ast", - "id": "superpowers_findings_oc_0016_high_re_opening_a_channel_visited_earlier_in_the_session_renders_a_permanently_stale_message_window_loadmessages_short_circuits_on_ischannelloaded_and_nothing_invalidates_on_switch", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0016 \u2014 high \u2014 re-opening a channel visited earlier in the session renders a permanently stale message window \u2014 loadmessages short-circuits on ischannelloaded and nothing invalidates on switch" - }, - { - "label": "OC-0017 \u2014 high \u2014 Virtual scroll window never follows the scroll position \u2014 rows outside the initial \u00b120-item overscan render as blank space", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L225", - "_origin": "ast", - "id": "superpowers_findings_oc_0017_high_virtual_scroll_window_never_follows_the_scroll_position_rows_outside_the_initial_20_item_overscan_render_as_blank_space", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0017 \u2014 high \u2014 virtual scroll window never follows the scroll position \u2014 rows outside the initial \u00b120-item overscan render as blank space" - }, - { - "label": "OC-0018 \u2014 high \u2014 voice_join into a 1:1 DM has no block gate \u2014 a blocked user can enter the blocker's DM voice room and publish audio to them", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L243", - "_origin": "ast", - "id": "superpowers_findings_oc_0018_high_voice_join_into_a_1_1_dm_has_no_block_gate_a_blocked_user_can_enter_the_blocker_s_dm_voice_room_and_publish_audio_to_them", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0018 \u2014 high \u2014 voice_join into a 1:1 dm has no block gate \u2014 a blocked user can enter the blocker's dm voice room and publish audio to them" - }, - { - "label": "OC-0019 \u2014 medium \u2014 Disconnect teardown decides `replaced` before a multi-second voice cleanup, then stamps the already-reconnected user offline", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L257", - "_origin": "ast", - "id": "superpowers_findings_oc_0019_medium_disconnect_teardown_decides_replaced_before_a_multi_second_voice_cleanup_then_stamps_the_already_reconnected_user_offline", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0019 \u2014 medium \u2014 disconnect teardown decides `replaced` before a multi-second voice cleanup, then stamps the already-reconnected user offline" - }, - { - "label": "OC-0020 \u2014 medium \u2014 Stale `_isKeyHolder` survives a voice-channel switch made while the SFU is reconnecting, so the client joins the new channel as a phantom key holder", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L276", - "_origin": "ast", - "id": "superpowers_findings_oc_0020_medium_stale_iskeyholder_survives_a_voice_channel_switch_made_while_the_sfu_is_reconnecting_so_the_client_joins_the_new_channel_as_a_phantom_key_holder", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0020 \u2014 medium \u2014 stale `_iskeyholder` survives a voice-channel switch made while the sfu is reconnecting, so the client joins the new channel as a phantom key holder" - }, - { - "label": "OC-0021 \u2014 medium \u2014 Login builds a rate-limiter key from the unvalidated username, so an unauthenticated caller pins ~1 MiB of heap per request for 6 hours", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L301", - "_origin": "ast", - "id": "superpowers_findings_oc_0021_medium_login_builds_a_rate_limiter_key_from_the_unvalidated_username_so_an_unauthenticated_caller_pins_1_mib_of_heap_per_request_for_6_hours", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0021 \u2014 medium \u2014 login builds a rate-limiter key from the unvalidated username, so an unauthenticated caller pins ~1 mib of heap per request for 6 hours" - }, - { - "label": "OC-0022 \u2014 medium \u2014 The archived-channel read-only gate exists only on SendMessage; edit, reaction, pin and purge still mutate an archived channel", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L330", - "_origin": "ast", - "id": "superpowers_findings_oc_0022_medium_the_archived_channel_read_only_gate_exists_only_on_sendmessage_edit_reaction_pin_and_purge_still_mutate_an_archived_channel", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0022 \u2014 medium \u2014 the archived-channel read-only gate exists only on sendmessage; edit, reaction, pin and purge still mutate an archived channel" - }, - { - "label": "OC-0023 \u2014 medium \u2014 ListMembers hides users whose temporary ban has lapsed, while every other path treats them as active", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L352", - "_origin": "ast", - "id": "superpowers_findings_oc_0023_medium_listmembers_hides_users_whose_temporary_ban_has_lapsed_while_every_other_path_treats_them_as_active", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0023 \u2014 medium \u2014 listmembers hides users whose temporary ban has lapsed, while every other path treats them as active" - }, - { - "label": "OC-0024 \u2014 medium \u2014 channel_focus re-subscribes after a concurrent visibility revoke, leaving a demoted user permanently subscribed to a channel they can no longer READ", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L376", - "_origin": "ast", - "id": "superpowers_findings_oc_0024_medium_channel_focus_re_subscribes_after_a_concurrent_visibility_revoke_leaving_a_demoted_user_permanently_subscribed_to_a_channel_they_can_no_longer_read", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0024 \u2014 medium \u2014 channel_focus re-subscribes after a concurrent visibility revoke, leaving a demoted user permanently subscribed to a channel they can no longer read" - }, - { - "label": "OC-0025 \u2014 medium \u2014 enableCamera has no supersession re-check after publishTrack, so a concurrent disableCamera leaves the server and every peer believing the camera is on", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L411", - "_origin": "ast", - "id": "superpowers_findings_oc_0025_medium_enablecamera_has_no_supersession_re_check_after_publishtrack_so_a_concurrent_disablecamera_leaves_the_server_and_every_peer_believing_the_camera_is_on", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0025 \u2014 medium \u2014 enablecamera has no supersession re-check after publishtrack, so a concurrent disablecamera leaves the server and every peer believing the camera is on" - }, - { - "label": "OC-0026 \u2014 medium \u2014 enableScreenshare has no supersession re-check across its publish loop, so a concurrent stop still announces the share as on", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L439", - "_origin": "ast", - "id": "superpowers_findings_oc_0026_medium_enablescreenshare_has_no_supersession_re_check_across_its_publish_loop_so_a_concurrent_stop_still_announces_the_share_as_on", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0026 \u2014 medium \u2014 enablescreenshare has no supersession re-check across its publish loop, so a concurrent stop still announces the share as on" - }, - { - "label": "OC-0027 \u2014 medium \u2014 HTTP listen failure returns from run() without hub.GracefulStop(), orphaning the companion livekit-server process and leaving the maintenance goroutine's stop channel unclosed", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L469", - "_origin": "ast", - "id": "superpowers_findings_oc_0027_medium_http_listen_failure_returns_from_run_without_hub_gracefulstop_orphaning_the_companion_livekit_server_process_and_leaving_the_maintenance_goroutine_s_stop_channel_unclosed", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0027 \u2014 medium \u2014 http listen failure returns from run() without hub.gracefulstop(), orphaning the companion livekit-server process and leaving the maintenance goroutine's stop channel unclosed" - }, - { - "label": "OC-0028 \u2014 medium \u2014 buildReady drops the user's own live voice room when it is not READ-visible, wiping the client's call roster on a full resync", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L491", - "_origin": "ast", - "id": "superpowers_findings_oc_0028_medium_buildready_drops_the_user_s_own_live_voice_room_when_it_is_not_read_visible_wiping_the_client_s_call_roster_on_a_full_resync", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0028 \u2014 medium \u2014 buildready drops the user's own live voice room when it is not read-visible, wiping the client's call roster on a full resync" - }, - { - "label": "OC-0029 \u2014 medium \u2014 buildReady swallows three DB errors and ships an authoritative-looking empty snapshot; the client wipes its DM list, member list and unread badges", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L513", - "_origin": "ast", - "id": "superpowers_findings_oc_0029_medium_buildready_swallows_three_db_errors_and_ships_an_authoritative_looking_empty_snapshot_the_client_wipes_its_dm_list_member_list_and_unread_badges", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0029 \u2014 medium \u2014 buildready swallows three db errors and ships an authoritative-looking empty snapshot; the client wipes its dm list, member list and unread badges" - }, - { - "label": "OC-0030 \u2014 medium \u2014 prependMessages trims the tail at the 500-row cap, silently destroying the user's pending/failed optimistic rows", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L547", - "_origin": "ast", - "id": "superpowers_findings_oc_0030_medium_prependmessages_trims_the_tail_at_the_500_row_cap_silently_destroying_the_user_s_pending_failed_optimistic_rows", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0030 \u2014 medium \u2014 prependmessages trims the tail at the 500-row cap, silently destroying the user's pending/failed optimistic rows" - }, - { - "label": "OC-0031 \u2014 medium \u2014 Channel drag-reorder assumes distinct positions; tied positions make the drop a silent no-op or land the channel in the wrong slot", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L570", - "_origin": "ast", - "id": "superpowers_findings_oc_0031_medium_channel_drag_reorder_assumes_distinct_positions_tied_positions_make_the_drop_a_silent_no_op_or_land_the_channel_in_the_wrong_slot", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0031 \u2014 medium \u2014 channel drag-reorder assumes distinct positions; tied positions make the drop a silent no-op or land the channel in the wrong slot" - }, - { - "label": "OC-0032 \u2014 medium \u2014 Client's `lastSeq` watermark is never reset by a full-ready resync, so it desyncs permanently from the server's seq counter (and then silently skips events)", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L604", - "_origin": "ast", - "id": "superpowers_findings_oc_0032_medium_client_s_lastseq_watermark_is_never_reset_by_a_full_ready_resync_so_it_desyncs_permanently_from_the_server_s_seq_counter_and_then_silently_skips_events", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0032 \u2014 medium \u2014 client's `lastseq` watermark is never reset by a full-ready resync, so it desyncs permanently from the server's seq counter (and then silently skips events)" - }, - { - "label": "OC-0033 \u2014 medium \u2014 A DM send survives a transient GetDMParticipantIDs failure by silently dropping live fan-out to everyone, including the sender", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L622", - "_origin": "ast", - "id": "superpowers_findings_oc_0033_medium_a_dm_send_survives_a_transient_getdmparticipantids_failure_by_silently_dropping_live_fan_out_to_everyone_including_the_sender", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0033 \u2014 medium \u2014 a dm send survives a transient getdmparticipantids failure by silently dropping live fan-out to everyone, including the sender" - }, - { - "label": "OC-0034 \u2014 medium \u2014 Aborted voice-channel switch restores the server's voice state but never undoes the voice_leave it already broadcast \u2014 the user is stuck in a phantom voice session nobody (including themselves) can see", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L634", - "_origin": "ast", - "id": "superpowers_findings_oc_0034_medium_aborted_voice_channel_switch_restores_the_server_s_voice_state_but_never_undoes_the_voice_leave_it_already_broadcast_the_user_is_stuck_in_a_phantom_voice_session_nobody_including_themselves_can_see", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0034 \u2014 medium \u2014 aborted voice-channel switch restores the server's voice state but never undoes the voice_leave it already broadcast \u2014 the user is stuck in a phantom voice session nobody (including themselves) can see" - }, - { - "label": "OC-0035 \u2014 medium \u2014 Deleting a voice channel races a concurrent voice_join, producing a permanent hub/SFU ghost participant that no sweep can ever detect or heal", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L682", - "_origin": "ast", - "id": "superpowers_findings_oc_0035_medium_deleting_a_voice_channel_races_a_concurrent_voice_join_producing_a_permanent_hub_sfu_ghost_participant_that_no_sweep_can_ever_detect_or_heal", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0035 \u2014 medium \u2014 deleting a voice channel races a concurrent voice_join, producing a permanent hub/sfu ghost participant that no sweep can ever detect or heal" - }, - { - "label": "OC-0036 \u2014 medium \u2014 Slow mode consumes its cooldown token before content and attachment validation, so a rejected send locks the composer for the full window", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L694", - "_origin": "ast", - "id": "superpowers_findings_oc_0036_medium_slow_mode_consumes_its_cooldown_token_before_content_and_attachment_validation_so_a_rejected_send_locks_the_composer_for_the_full_window", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0036 \u2014 medium \u2014 slow mode consumes its cooldown token before content and attachment validation, so a rejected send locks the composer for the full window" - }, - { - "label": "OC-0037 \u2014 medium \u2014 Tray Status menu bypasses the client's own status state, so a tray-set Do Not Disturb neither silences notifications nor survives the idle timer or a reconnect", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L737", - "_origin": "ast", - "id": "superpowers_findings_oc_0037_medium_tray_status_menu_bypasses_the_client_s_own_status_state_so_a_tray_set_do_not_disturb_neither_silences_notifications_nor_survives_the_idle_timer_or_a_reconnect", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0037 \u2014 medium \u2014 tray status menu bypasses the client's own status state, so a tray-set do not disturb neither silences notifications nor survives the idle timer or a reconnect" - }, - { - "label": "OC-0038 \u2014 medium \u2014 The LiveKit participant_left teardown never tells the leaver, unlike every sibling eviction path", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L769", - "_origin": "ast", - "id": "superpowers_findings_oc_0038_medium_the_livekit_participant_left_teardown_never_tells_the_leaver_unlike_every_sibling_eviction_path", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0038 \u2014 medium \u2014 the livekit participant_left teardown never tells the leaver, unlike every sibling eviction path" - }, - { - "label": "OC-0040 \u2014 medium \u2014 Scroll-to-bottom button and \"Jump to Present\" pill are absolutely positioned inside the scroll container, so they scroll out of view exactly when they are shown", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L808", - "_origin": "ast", - "id": "superpowers_findings_oc_0040_medium_scroll_to_bottom_button_and_jump_to_present_pill_are_absolutely_positioned_inside_the_scroll_container_so_they_scroll_out_of_view_exactly_when_they_are_shown", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0040 \u2014 medium \u2014 scroll-to-bottom button and \"jump to present\" pill are absolutely positioned inside the scroll container, so they scroll out of view exactly when they are shown" - }, - { - "label": "OC-0041 \u2014 medium \u2014 Any user whose username is exactly \"System\" has every message rendered as a server system notice, with no author and no moderation controls", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L826", - "_origin": "ast", - "id": "superpowers_findings_oc_0041_medium_any_user_whose_username_is_exactly_system_has_every_message_rendered_as_a_server_system_notice_with_no_author_and_no_moderation_controls", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0041 \u2014 medium \u2014 any user whose username is exactly \"system\" has every message rendered as a server system notice, with no author and no moderation controls" - }, - { - "label": "OC-0042 \u2014 medium \u2014 leaveVoice() stops manual camera/screen tracks without bumping the enable/disable race-guard generation, so a camera/screenshare enable that is mid-flight (awaiting the OS permission prompt / device picker) when the user leaves voice resurrects a track after the room is gone", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L845", - "_origin": "ast", - "id": "superpowers_findings_oc_0042_medium_leavevoice_stops_manual_camera_screen_tracks_without_bumping_the_enable_disable_race_guard_generation_so_a_camera_screenshare_enable_that_is_mid_flight_awaiting_the_os_permission_prompt_device_picker_when_the_user_leaves_voice_resurrects_a_track_after_the_room_is_gone", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0042 \u2014 medium \u2014 leavevoice() stops manual camera/screen tracks without bumping the enable/disable race-guard generation, so a camera/screenshare enable that is mid-flight (awaiting the os permission prompt / device picker) when the user leaves voice resurrects a track after the room is gone" - }, - { - "label": "OC-0043 \u2014 medium \u2014 The built-in \"light\" theme overrides only 4 of the ~45 design tokens and has no stylesheet, so the message composer and every form input render near-invisible dark-on-dark", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L857", - "_origin": "ast", - "id": "superpowers_findings_oc_0043_medium_the_built_in_light_theme_overrides_only_4_of_the_45_design_tokens_and_has_no_stylesheet_so_the_message_composer_and_every_form_input_render_near_invisible_dark_on_dark", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0043 \u2014 medium \u2014 the built-in \"light\" theme overrides only 4 of the ~45 design tokens and has no stylesheet, so the message composer and every form input render near-invisible dark-on-dark" - }, - { - "label": "OC-0044 \u2014 medium \u2014 rollbackVoiceJoin deletes voice_states by userID alone, letting a stale/failed join's rollback destroy a concurrently-established newer voice membership", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L878", - "_origin": "ast", - "id": "superpowers_findings_oc_0044_medium_rollbackvoicejoin_deletes_voice_states_by_userid_alone_letting_a_stale_failed_join_s_rollback_destroy_a_concurrently_established_newer_voice_membership", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0044 \u2014 medium \u2014 rollbackvoicejoin deletes voice_states by userid alone, letting a stale/failed join's rollback destroy a concurrently-established newer voice membership" - }, - { - "label": "OC-0045 \u2014 medium \u2014 Role demotion's live-subscription revocation is gated on a cosmetic role re-read, so a failed lookup leaves the demoted user subscribed to channels they can no longer read", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L890", - "_origin": "ast", - "id": "superpowers_findings_oc_0045_medium_role_demotion_s_live_subscription_revocation_is_gated_on_a_cosmetic_role_re_read_so_a_failed_lookup_leaves_the_demoted_user_subscribed_to_channels_they_can_no_longer_read", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0045 \u2014 medium \u2014 role demotion's live-subscription revocation is gated on a cosmetic role re-read, so a failed lookup leaves the demoted user subscribed to channels they can no longer read" - }, - { - "label": "OC-0046 \u2014 medium \u2014 The Font Size slider and the \"Large Font\" accessibility toggle are no-ops \u2014 `--font-size` is written but no stylesheet ever reads it", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L918", - "_origin": "ast", - "id": "superpowers_findings_oc_0046_medium_the_font_size_slider_and_the_large_font_accessibility_toggle_are_no_ops_font_size_is_written_but_no_stylesheet_ever_reads_it", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0046 \u2014 medium \u2014 the font size slider and the \"large font\" accessibility toggle are no-ops \u2014 `--font-size` is written but no stylesheet ever reads it" - }, - { - "label": "OC-0047 \u2014 medium \u2014 Attachment/avatar fetches lose their bearer token and their cert-pinned proxy when the server host is stored with an explicit :443", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L938", - "_origin": "ast", - "id": "superpowers_findings_oc_0047_medium_attachment_avatar_fetches_lose_their_bearer_token_and_their_cert_pinned_proxy_when_the_server_host_is_stored_with_an_explicit_443", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0047 \u2014 medium \u2014 attachment/avatar fetches lose their bearer token and their cert-pinned proxy when the server host is stored with an explicit :443" - }, - { - "label": "OC-0048 \u2014 medium \u2014 Self-account-deletion emits no member_ban: router.go never supplies the optional AuthBroadcaster, so every other client keeps the deleted user and the deleted user's own socket survives", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L979", - "_origin": "ast", - "id": "superpowers_findings_oc_0048_medium_self_account_deletion_emits_no_member_ban_router_go_never_supplies_the_optional_authbroadcaster_so_every_other_client_keeps_the_deleted_user_and_the_deleted_user_s_own_socket_survives", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0048 \u2014 medium \u2014 self-account-deletion emits no member_ban: router.go never supplies the optional authbroadcaster, so every other client keeps the deleted user and the deleted user's own socket survives" - }, - { - "label": "OC-0049 \u2014 medium \u2014 High Contrast accessibility toggle's main effect is dead: `.high-contrast { --text-normal }` is on , which already carries an inline --text-normal written by applyTheme()", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L998", - "_origin": "ast", - "id": "superpowers_findings_oc_0049_medium_high_contrast_accessibility_toggle_s_main_effect_is_dead_high_contrast_text_normal_is_on_html_which_already_carries_an_inline_text_normal_written_by_applytheme", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0049 \u2014 medium \u2014 high contrast accessibility toggle's main effect is dead: `.high-contrast { --text-normal }` is on , which already carries an inline --text-normal written by applytheme()" - }, - { - "label": "OC-0050 \u2014 low \u2014 CleanupVoiceForChannel's check-then-clear is not atomic, so a concurrent voice_join is silently wiped from the hub while its DB row survives", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1016", - "_origin": "ast", - "id": "superpowers_findings_oc_0050_low_cleanupvoiceforchannel_s_check_then_clear_is_not_atomic_so_a_concurrent_voice_join_is_silently_wiped_from_the_hub_while_its_db_row_survives", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0050 \u2014 low \u2014 cleanupvoiceforchannel's check-then-clear is not atomic, so a concurrent voice_join is silently wiped from the hub while its db row survives" - }, - { - "label": "OC-0051 \u2014 low \u2014 handleReconnect returns true after a failed handshake write, so the full disconnect teardown runs twice", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1035", - "_origin": "ast", - "id": "superpowers_findings_oc_0051_low_handlereconnect_returns_true_after_a_failed_handshake_write_so_the_full_disconnect_teardown_runs_twice", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0051 \u2014 low \u2014 handlereconnect returns true after a failed handshake write, so the full disconnect teardown runs twice" - }, - { - "label": "OC-0052 \u2014 low \u2014 GET /channels/{id}/pins has no LIMIT and no pin cap; past ~32k pins the endpoint fails permanently", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1062", - "_origin": "ast", - "id": "superpowers_findings_oc_0052_low_get_channels_id_pins_has_no_limit_and_no_pin_cap_past_32k_pins_the_endpoint_fails_permanently", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0052 \u2014 low \u2014 get /channels/{id}/pins has no limit and no pin cap; past ~32k pins the endpoint fails permanently" - }, - { - "label": "OC-0053 \u2014 low \u2014 Quick-switch overlay's teardown guard never fires \u2014 an orphaned modal is mounted on document.body after MainPage is destroyed", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1092", - "_origin": "ast", - "id": "superpowers_findings_oc_0053_low_quick_switch_overlay_s_teardown_guard_never_fires_an_orphaned_modal_is_mounted_on_document_body_after_mainpage_is_destroyed", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0053 \u2014 low \u2014 quick-switch overlay's teardown guard never fires \u2014 an orphaned modal is mounted on document.body after mainpage is destroyed" - }, - { - "label": "OC-0054 \u2014 low \u2014 blocksStore survives clearAuth(), so a previous server's block list can gate DM composers on the next server", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1130", - "_origin": "ast", - "id": "superpowers_findings_oc_0054_low_blocksstore_survives_clearauth_so_a_previous_server_s_block_list_can_gate_dm_composers_on_the_next_server", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0054 \u2014 low \u2014 blocksstore survives clearauth(), so a previous server's block list can gate dm composers on the next server" - }, - { - "label": "OC-0055 \u2014 low \u2014 InviteManagerController.open() re-uses a pre-await root reference; a page teardown during the getInvites() fetch resurrects the overlay with a live document-level keydown listener that outlives the page", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1163", - "_origin": "ast", - "id": "superpowers_findings_oc_0055_low_invitemanagercontroller_open_re_uses_a_pre_await_root_reference_a_page_teardown_during_the_getinvites_fetch_resurrects_the_overlay_with_a_live_document_level_keydown_listener_that_outlives_the_page", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0055 \u2014 low \u2014 invitemanagercontroller.open() re-uses a pre-await root reference; a page teardown during the getinvites() fetch resurrects the overlay with a live document-level keydown listener that outlives the page" - }, - { - "label": "OC-0056 \u2014 low \u2014 ws.disconnect() cannot cancel an in-flight connect(), so a cancelled session still opens its WebSocket and re-registers Tauri listeners after teardown", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1175", - "_origin": "ast", - "id": "superpowers_findings_oc_0056_low_ws_disconnect_cannot_cancel_an_in_flight_connect_so_a_cancelled_session_still_opens_its_websocket_and_re_registers_tauri_listeners_after_teardown", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0056 \u2014 low \u2014 ws.disconnect() cannot cancel an in-flight connect(), so a cancelled session still opens its websocket and re-registers tauri listeners after teardown" - }, - { - "label": "OC-0057 \u2014 low \u2014 showContextMenu registers a permanent \"abort\" listener on the caller's component-lifetime signal on every open, pinning each removed menu subtree", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1189", - "_origin": "ast", - "id": "superpowers_findings_oc_0057_low_showcontextmenu_registers_a_permanent_abort_listener_on_the_caller_s_component_lifetime_signal_on_every_open_pinning_each_removed_menu_subtree", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0057 \u2014 low \u2014 showcontextmenu registers a permanent \"abort\" listener on the caller's component-lifetime signal on every open, pinning each removed menu subtree" - }, - { - "label": "OC-0058 \u2014 low \u2014 Unban emits no WS event \u2014 *ws.Hub does not implement memberUnbanBroadcaster", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1211", - "_origin": "ast", - "id": "superpowers_findings_oc_0058_low_unban_emits_no_ws_event_ws_hub_does_not_implement_memberunbanbroadcaster", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0058 \u2014 low \u2014 unban emits no ws event \u2014 *ws.hub does not implement memberunbanbroadcaster" - }, - { - "label": "OC-0059 \u2014 low \u2014 Composer slow-mode cooldown is applied to whichever channel happens to be mounted when a chat_send_ok/SLOW_MODE frame arrives, not the channel the message was actually sent to", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1230", - "_origin": "ast", - "id": "superpowers_findings_oc_0059_low_composer_slow_mode_cooldown_is_applied_to_whichever_channel_happens_to_be_mounted_when_a_chat_send_ok_slow_mode_frame_arrives_not_the_channel_the_message_was_actually_sent_to", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0059 \u2014 low \u2014 composer slow-mode cooldown is applied to whichever channel happens to be mounted when a chat_send_ok/slow_mode frame arrives, not the channel the message was actually sent to" - }, - { - "label": "OC-0060 \u2014 low \u2014 A single malformed stored server profile makes the client discard all saved profiles, and the next login overwrites the on-disk list with that empty set", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1242", - "_origin": "ast", - "id": "superpowers_findings_oc_0060_low_a_single_malformed_stored_server_profile_makes_the_client_discard_all_saved_profiles_and_the_next_login_overwrites_the_on_disk_list_with_that_empty_set", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0060 \u2014 low \u2014 a single malformed stored server profile makes the client discard all saved profiles, and the next login overwrites the on-disk list with that empty set" - }, - { - "label": "OC-0061 \u2014 low \u2014 NewPersistentRateLimiter silently discards LoadActiveLockouts errors, dropping all active login lockouts with no log line", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1269", - "_origin": "ast", - "id": "superpowers_findings_oc_0061_low_newpersistentratelimiter_silently_discards_loadactivelockouts_errors_dropping_all_active_login_lockouts_with_no_log_line", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0061 \u2014 low \u2014 newpersistentratelimiter silently discards loadactivelockouts errors, dropping all active login lockouts with no log line" - }, - { - "label": "OC-0062 \u2014 low \u2014 Cold-tier reconnect replay has no interior-gap detection, so events the EventPersister dropped are silently skipped and presented as a complete resume", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1281", - "_origin": "ast", - "id": "superpowers_findings_oc_0062_low_cold_tier_reconnect_replay_has_no_interior_gap_detection_so_events_the_eventpersister_dropped_are_silently_skipped_and_presented_as_a_complete_resume", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0062 \u2014 low \u2014 cold-tier reconnect replay has no interior-gap detection, so events the eventpersister dropped are silently skipped and presented as a complete resume" - }, - { - "label": "OC-0063 \u2014 low \u2014 Connected overlay reads authStore before the auth_ok payload is dispatched, so server_name and motd are always the pre-handshake values", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1298", - "_origin": "ast", - "id": "superpowers_findings_oc_0063_low_connected_overlay_reads_authstore_before_the_auth_ok_payload_is_dispatched_so_server_name_and_motd_are_always_the_pre_handshake_values", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0063 \u2014 low \u2014 connected overlay reads authstore before the auth_ok payload is dispatched, so server_name and motd are always the pre-handshake values" - }, - { - "label": "OC-0064 \u2014 low \u2014 The dispatcher's catch-all server-error branch writes to `transientError`, which only ConnectPage renders \u2014 every unhandled error is invisible in-app and then resurfaces stale on the login screen", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1316", - "_origin": "ast", - "id": "superpowers_findings_oc_0064_low_the_dispatcher_s_catch_all_server_error_branch_writes_to_transienterror_which_only_connectpage_renders_every_unhandled_error_is_invisible_in_app_and_then_resurfaces_stale_on_the_login_screen", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0064 \u2014 low \u2014 the dispatcher's catch-all server-error branch writes to `transienterror`, which only connectpage renders \u2014 every unhandled error is invisible in-app and then resurfaces stale on the login screen" - }, - { - "label": "OC-0065 \u2014 low \u2014 participant_joined webhook treats a GetVoiceState read error as proof of a rogue participant and ejects a legitimate one from the SFU", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1340", - "_origin": "ast", - "id": "superpowers_findings_oc_0065_low_participant_joined_webhook_treats_a_getvoicestate_read_error_as_proof_of_a_rogue_participant_and_ejects_a_legitimate_one_from_the_sfu", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0065 \u2014 low \u2014 participant_joined webhook treats a getvoicestate read error as proof of a rogue participant and ejects a legitimate one from the sfu" - }, - { - "label": "OC-0066 \u2014 low \u2014 applyMentionCounts runs after SendMessage returns, so a mark_read that lands in between leaves a permanent mention badge on a channel with zero unread", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1366", - "_origin": "ast", - "id": "superpowers_findings_oc_0066_low_applymentioncounts_runs_after_sendmessage_returns_so_a_mark_read_that_lands_in_between_leaves_a_permanent_mention_badge_on_a_channel_with_zero_unread", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0066 \u2014 low \u2014 applymentioncounts runs after sendmessage returns, so a mark_read that lands in between leaves a permanent mention badge on a channel with zero unread" - }, - { - "label": "OC-0067 \u2014 low \u2014 The identical GetDMParticipantIDs-failure gap silently drops chat_edited fan-out for DM edits", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1383", - "_origin": "ast", - "id": "superpowers_findings_oc_0067_low_the_identical_getdmparticipantids_failure_gap_silently_drops_chat_edited_fan_out_for_dm_edits", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0067 \u2014 low \u2014 the identical getdmparticipantids-failure gap silently drops chat_edited fan-out for dm edits" - }, - { - "label": "OC-0068 \u2014 low \u2014 A DM message delete is committed but its chat_deleted fan-out is silently dropped when GetDMParticipantIDs fails", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1395", - "_origin": "ast", - "id": "superpowers_findings_oc_0068_low_a_dm_message_delete_is_committed_but_its_chat_deleted_fan_out_is_silently_dropped_when_getdmparticipantids_fails", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0068 \u2014 low \u2014 a dm message delete is committed but its chat_deleted fan-out is silently dropped when getdmparticipantids fails" - }, - { - "label": "OC-0069 \u2014 low \u2014 A DM reaction is persisted but its reaction_update fan-out is silently dropped when GetDMParticipantIDs fails", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1430", - "_origin": "ast", - "id": "superpowers_findings_oc_0069_low_a_dm_reaction_is_persisted_but_its_reaction_update_fan_out_is_silently_dropped_when_getdmparticipantids_fails", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0069 \u2014 low \u2014 a dm reaction is persisted but its reaction_update fan-out is silently dropped when getdmparticipantids fails" - }, - { - "label": "OC-0070 \u2014 low \u2014 channel_focus has no archived-channel gate, so a client can subscribe to the live event stream of a channel every visibility surface hides \u2014 and reconnect replay then filters those same events out", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1462", - "_origin": "ast", - "id": "superpowers_findings_oc_0070_low_channel_focus_has_no_archived_channel_gate_so_a_client_can_subscribe_to_the_live_event_stream_of_a_channel_every_visibility_surface_hides_and_reconnect_replay_then_filters_those_same_events_out", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0070 \u2014 low \u2014 channel_focus has no archived-channel gate, so a client can subscribe to the live event stream of a channel every visibility surface hides \u2014 and reconnect replay then filters those same events out" - }, - { - "label": "OC-0071 \u2014 low \u2014 A sidebar re-render during a channel drag detaches the drop container, so the reorder silently no-ops", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1498", - "_origin": "ast", - "id": "superpowers_findings_oc_0071_low_a_sidebar_re_render_during_a_channel_drag_detaches_the_drop_container_so_the_reorder_silently_no_ops", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0071 \u2014 low \u2014 a sidebar re-render during a channel drag detaches the drop container, so the reorder silently no-ops" - }, - { - "label": "OC-0072 \u2014 low \u2014 voice_mod_move's pre-flight omits the archived-channel gate that voice_join enforces, so the move drops the target out of voice for nothing", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1539", - "_origin": "ast", - "id": "superpowers_findings_oc_0072_low_voice_mod_move_s_pre_flight_omits_the_archived_channel_gate_that_voice_join_enforces_so_the_move_drops_the_target_out_of_voice_for_nothing", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0072 \u2014 low \u2014 voice_mod_move's pre-flight omits the archived-channel gate that voice_join enforces, so the move drops the target out of voice for nothing" - }, - { - "label": "OC-0073 \u2014 low \u2014 channelReadAudience does not exclude archived channels, so admin edits to an archived channel are broadcast directly to every user whose base role has READ_MESSAGES", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1566", - "_origin": "ast", - "id": "superpowers_findings_oc_0073_low_channelreadaudience_does_not_exclude_archived_channels_so_admin_edits_to_an_archived_channel_are_broadcast_directly_to_every_user_whose_base_role_has_read_messages", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0073 \u2014 low \u2014 channelreadaudience does not exclude archived channels, so admin edits to an archived channel are broadcast directly to every user whose base role has read_messages" - }, - { - "label": "OC-0074 \u2014 low \u2014 EditMessage's DM detection fails open on a GetChannel error, skipping the block gate and misrouting the edit fan-out", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1578", - "_origin": "ast", - "id": "superpowers_findings_oc_0074_low_editmessage_s_dm_detection_fails_open_on_a_getchannel_error_skipping_the_block_gate_and_misrouting_the_edit_fan_out", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0074 \u2014 low \u2014 editmessage's dm detection fails open on a getchannel error, skipping the block gate and misrouting the edit fan-out" - }, - { - "label": "OC-0075 \u2014 low \u2014 handleReaction's DM detection fails open on a GetChannel error, letting a non-participant react inside a private DM", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1597", - "_origin": "ast", - "id": "superpowers_findings_oc_0075_low_handlereaction_s_dm_detection_fails_open_on_a_getchannel_error_letting_a_non_participant_react_inside_a_private_dm", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0075 \u2014 low \u2014 handlereaction's dm detection fails open on a getchannel error, letting a non-participant react inside a private dm" - }, - { - "label": "OC-0076 \u2014 low \u2014 The admin setup rate limiter is never reaped, so its window map grows without bound for the life of the process", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1617", - "_origin": "ast", - "id": "superpowers_findings_oc_0076_low_the_admin_setup_rate_limiter_is_never_reaped_so_its_window_map_grows_without_bound_for_the_life_of_the_process", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0076 \u2014 low \u2014 the admin setup rate limiter is never reaped, so its window map grows without bound for the life of the process" - }, - { - "label": "OC-0077 \u2014 low \u2014 DeleteMessage has no archived-channel gate \u2014 the read-only invariant has a fifth hole", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1636", - "_origin": "ast", - "id": "superpowers_findings_oc_0077_low_deletemessage_has_no_archived_channel_gate_the_read_only_invariant_has_a_fifth_hole", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0077 \u2014 low \u2014 deletemessage has no archived-channel gate \u2014 the read-only invariant has a fifth hole" - }, - { - "label": "OC-0078 \u2014 low \u2014 renderAll's rapid-fire breaker discards the update instead of deferring it, leaving the message list permanently stale", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1648", - "_origin": "ast", - "id": "superpowers_findings_oc_0078_low_renderall_s_rapid_fire_breaker_discards_the_update_instead_of_deferring_it_leaving_the_message_list_permanently_stale", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0078 \u2014 low \u2014 renderall's rapid-fire breaker discards the update instead of deferring it, leaving the message list permanently stale" - }, - { - "label": "OC-0079 \u2014 low \u2014 An emptied message edit is submitted (and edit mode torn down) when an attachment is queued in the composer", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1669", - "_origin": "ast", - "id": "superpowers_findings_oc_0079_low_an_emptied_message_edit_is_submitted_and_edit_mode_torn_down_when_an_attachment_is_queued_in_the_composer", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0079 \u2014 low \u2014 an emptied message edit is submitted (and edit mode torn down) when an attachment is queued in the composer" - }, - { - "label": "OC-0080 \u2014 low \u2014 teardownForReconnect() has the same generation-guard gap as leaveVoice(), so a camera/screenshare enable racing an unexpected LiveKit disconnect can publish a track to the room being torn down for auto-reconnect", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1701", - "_origin": "ast", - "id": "superpowers_findings_oc_0080_low_teardownforreconnect_has_the_same_generation_guard_gap_as_leavevoice_so_a_camera_screenshare_enable_racing_an_unexpected_livekit_disconnect_can_publish_a_track_to_the_room_being_torn_down_for_auto_reconnect", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0080 \u2014 low \u2014 teardownforreconnect() has the same generation-guard gap as leavevoice(), so a camera/screenshare enable racing an unexpected livekit disconnect can publish a track to the room being torn down for auto-reconnect" - }, - { - "label": "OC-0081 \u2014 low \u2014 voice_max_video cap counts the requester's own camera row, so a user whose server-side camera flag is already 1 can never re-enable", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1713", - "_origin": "ast", - "id": "superpowers_findings_oc_0081_low_voice_max_video_cap_counts_the_requester_s_own_camera_row_so_a_user_whose_server_side_camera_flag_is_already_1_can_never_re_enable", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0081 \u2014 low \u2014 voice_max_video cap counts the requester's own camera row, so a user whose server-side camera flag is already 1 can never re-enable" - }, - { - "label": "OC-0082 \u2014 low \u2014 Pinning a soft-deleted message returns HTTP 500: SetMessagePinned leaks db.ErrNotFound unwrapped, and lacks the deleted-message guard its siblings have", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1727", - "_origin": "ast", - "id": "superpowers_findings_oc_0082_low_pinning_a_soft_deleted_message_returns_http_500_setmessagepinned_leaks_db_errnotfound_unwrapped_and_lacks_the_deleted_message_guard_its_siblings_have", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0082 \u2014 low \u2014 pinning a soft-deleted message returns http 500: setmessagepinned leaks db.errnotfound unwrapped, and lacks the deleted-message guard its siblings have" - }, - { - "label": "OC-0083 \u2014 low \u2014 ConnectPage.destroy() never clears uiStore.settingsOpen, so the settings panel pops open over MainPage immediately after login", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1753", - "_origin": "ast", - "id": "superpowers_findings_oc_0083_low_connectpage_destroy_never_clears_uistore_settingsopen_so_the_settings_panel_pops_open_over_mainpage_immediately_after_login", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0083 \u2014 low \u2014 connectpage.destroy() never clears uistore.settingsopen, so the settings panel pops open over mainpage immediately after login" - }, - { - "label": "OC-0084 \u2014 low \u2014 VideoGrid's track-mute handler adds a `track-muted` class that no stylesheet defines, so a stalled remote camera keeps showing a frozen frame", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1771", - "_origin": "ast", - "id": "superpowers_findings_oc_0084_low_videogrid_s_track_mute_handler_adds_a_track_muted_class_that_no_stylesheet_defines_so_a_stalled_remote_camera_keeps_showing_a_frozen_frame", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0084 \u2014 low \u2014 videogrid's track-mute handler adds a `track-muted` class that no stylesheet defines, so a stalled remote camera keeps showing a frozen frame" - }, - { - "label": "OC-0085 \u2014 low \u2014 Collapsed sidebar categories are persisted under the server's display name, not its host, so two default-named servers share one localStorage entry", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1792", - "_origin": "ast", - "id": "superpowers_findings_oc_0085_low_collapsed_sidebar_categories_are_persisted_under_the_server_s_display_name_not_its_host_so_two_default_named_servers_share_one_localstorage_entry", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0085 \u2014 low \u2014 collapsed sidebar categories are persisted under the server's display name, not its host, so two default-named servers share one localstorage entry" - }, - { - "label": "OC-0086 \u2014 low \u2014 sweepStaleVoiceStates classifies ghost rows from a snapshot and then deletes them without re-checking, so an in-flight voice_join is ejected from the SFU while the hub still believes the user is in the room", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1821", - "_origin": "ast", - "id": "superpowers_findings_oc_0086_low_sweepstalevoicestates_classifies_ghost_rows_from_a_snapshot_and_then_deletes_them_without_re_checking_so_an_in_flight_voice_join_is_ejected_from_the_sfu_while_the_hub_still_believes_the_user_is_in_the_room", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0086 \u2014 low \u2014 sweepstalevoicestates classifies ghost rows from a snapshot and then deletes them without re-checking, so an in-flight voice_join is ejected from the sfu while the hub still believes the user is in the room" - }, - { - "label": "OC-0087 \u2014 low \u2014 Global search silently drops every DM hit when the DM-id lookup fails, and reports success", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1871", - "_origin": "ast", - "id": "superpowers_findings_oc_0087_low_global_search_silently_drops_every_dm_hit_when_the_dm_id_lookup_fails_and_reports_success", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0087 \u2014 low \u2014 global search silently drops every dm hit when the dm-id lookup fails, and reports success" - }, - { - "label": "OC-0088 \u2014 low \u2014 Registry.DispatchCommand reads runtimePlatform without the registry lock that Close() writes it under", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1899", - "_origin": "ast", - "id": "superpowers_findings_oc_0088_low_registry_dispatchcommand_reads_runtimeplatform_without_the_registry_lock_that_close_writes_it_under", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0088 \u2014 low \u2014 registry.dispatchcommand reads runtimeplatform without the registry lock that close() writes it under" - }, - { - "label": "OC-0089 \u2014 low \u2014 `additionalBrowserArgs` silently drops wry's default `--disable-features=msWebOOUI,msPdfOOUI,msSmartScreenProtection` on Windows", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1930", - "_origin": "ast", - "id": "superpowers_findings_oc_0089_low_additionalbrowserargs_silently_drops_wry_s_default_disable_features_mswebooui_mspdfooui_mssmartscreenprotection_on_windows", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0089 \u2014 low \u2014 `additionalbrowserargs` silently drops wry's default `--disable-features=mswebooui,mspdfooui,mssmartscreenprotection` on windows" - }, - { - "label": "OC-0090 \u2014 low \u2014 channelReadAudience falls through to a server-wide role scan when the channel row is gone, leaking a private group-DM's voice_leave to every connected member", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1949", - "_origin": "ast", - "id": "superpowers_findings_oc_0090_low_channelreadaudience_falls_through_to_a_server_wide_role_scan_when_the_channel_row_is_gone_leaking_a_private_group_dm_s_voice_leave_to_every_connected_member", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0090 \u2014 low \u2014 channelreadaudience falls through to a server-wide role scan when the channel row is gone, leaking a private group-dm's voice_leave to every connected member" - }, - { - "label": "OC-0091 \u2014 low \u2014 chat_command is the only client message type registered without a rate limiter, and each frame runs a WASM plugin invocation", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L1978", - "_origin": "ast", - "id": "superpowers_findings_oc_0091_low_chat_command_is_the_only_client_message_type_registered_without_a_rate_limiter_and_each_frame_runs_a_wasm_plugin_invocation", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0091 \u2014 low \u2014 chat_command is the only client message type registered without a rate limiter, and each frame runs a wasm plugin invocation" - }, - { - "label": "OC-0093 \u2014 low \u2014 Registration records the reverse-proxy's address as the session IP while login records the real client IP", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2008", - "_origin": "ast", - "id": "superpowers_findings_oc_0093_low_registration_records_the_reverse_proxy_s_address_as_the_session_ip_while_login_records_the_real_client_ip", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0093 \u2014 low \u2014 registration records the reverse-proxy's address as the session ip while login records the real client ip" - }, - { - "label": "OC-0094 \u2014 low \u2014 \"Back\" from DM sidebar can silently jump the user to an unrelated channel when DM mode was entered via \"View all messages\"", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2029", - "_origin": "ast", - "id": "superpowers_findings_oc_0094_low_back_from_dm_sidebar_can_silently_jump_the_user_to_an_unrelated_channel_when_dm_mode_was_entered_via_view_all_messages", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0094 \u2014 low \u2014 \"back\" from dm sidebar can silently jump the user to an unrelated channel when dm mode was entered via \"view all messages\"" - }, - { - "label": "OC-0095 \u2014 critical \u2014 Voice E2EE is never actually enabled \u2014 room.setE2EEEnabled(true) is never called, so every frame reaches the SFU in plaintext while the UI shows \"\ud83d\udd12 Secured\"", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2041", - "_origin": "ast", - "id": "superpowers_findings_oc_0095_critical_voice_e2ee_is_never_actually_enabled_room_sete2eeenabled_true_is_never_called_so_every_frame_reaches_the_sfu_in_plaintext_while_the_ui_shows_secured", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0095 \u2014 critical \u2014 voice e2ee is never actually enabled \u2014 room.sete2eeenabled(true) is never called, so every frame reaches the sfu in plaintext while the ui shows \"\ud83d\udd12 secured\"" - }, - { - "label": "OC-0096 \u2014 high \u2014 Message search 500s on any query containing a hyphen \u2014 sanitizeFTSQuery allowlists the one character that is an FTS5 operator", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2082", - "_origin": "ast", - "id": "superpowers_findings_oc_0096_high_message_search_500s_on_any_query_containing_a_hyphen_sanitizeftsquery_allowlists_the_one_character_that_is_an_fts5_operator", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0096 \u2014 high \u2014 message search 500s on any query containing a hyphen \u2014 sanitizeftsquery allowlists the one character that is an fts5 operator" - }, - { - "label": "OC-0097 \u2014 high \u2014 Admin \"Restore backup\" writes to a hardcoded data/chatserver.db, so a restore silently no-ops on any server with a configured database.path", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2118", - "_origin": "ast", - "id": "superpowers_findings_oc_0097_high_admin_restore_backup_writes_to_a_hardcoded_data_chatserver_db_so_a_restore_silently_no_ops_on_any_server_with_a_configured_database_path", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0097 \u2014 high \u2014 admin \"restore backup\" writes to a hardcoded data/chatserver.db, so a restore silently no-ops on any server with a configured database.path" - }, - { - "label": "OC-0098 \u2014 high \u2014 A joining key holder sends its room-key offers before its own announce, so every existing participant drops them as \"unknown peer\"", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2136", - "_origin": "ast", - "id": "superpowers_findings_oc_0098_high_a_joining_key_holder_sends_its_room_key_offers_before_its_own_announce_so_every_existing_participant_drops_them_as_unknown_peer", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0098 \u2014 high \u2014 a joining key holder sends its room-key offers before its own announce, so every existing participant drops them as \"unknown peer\"" - }, - { - "label": "OC-0099 \u2014 high \u2014 Registration HTML-escapes the username but login does not, so any account whose name contains ' \" & is permanently unloggable", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2166", - "_origin": "ast", - "id": "superpowers_findings_oc_0099_high_registration_html_escapes_the_username_but_login_does_not_so_any_account_whose_name_contains_is_permanently_unloggable", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0099 \u2014 high \u2014 registration html-escapes the username but login does not, so any account whose name contains ' \" & is permanently unloggable" - }, - { - "label": "OC-0100 \u2014 high \u2014 Profile rename applies the same bare Sanitize, so renaming to a name with an apostrophe locks the user out of their own account", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2183", - "_origin": "ast", - "id": "superpowers_findings_oc_0100_high_profile_rename_applies_the_same_bare_sanitize_so_renaming_to_a_name_with_an_apostrophe_locks_the_user_out_of_their_own_account", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0100 \u2014 high \u2014 profile rename applies the same bare sanitize, so renaming to a name with an apostrophe locks the user out of their own account" - }, - { - "label": "OC-0101 \u2014 medium \u2014 Channel-visibility watermark is bumped after the fan-out loop, so a client reconnecting during the loop replays past the change and never converges", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2200", - "_origin": "ast", - "id": "superpowers_findings_oc_0101_medium_channel_visibility_watermark_is_bumped_after_the_fan_out_loop_so_a_client_reconnecting_during_the_loop_replays_past_the_change_and_never_converges", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0101 \u2014 medium \u2014 channel-visibility watermark is bumped after the fan-out loop, so a client reconnecting during the loop replays past the change and never converges" - }, - { - "label": "OC-0102 \u2014 medium \u2014 Avatar upload rewrites the username from a pre-lock snapshot, silently reverting a concurrent rename", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2214", - "_origin": "ast", - "id": "superpowers_findings_oc_0102_medium_avatar_upload_rewrites_the_username_from_a_pre_lock_snapshot_silently_reverting_a_concurrent_rename", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0102 \u2014 medium \u2014 avatar upload rewrites the username from a pre-lock snapshot, silently reverting a concurrent rename" - }, - { - "label": "OC-0103 \u2014 medium \u2014 WAF inline engine rejects every request body >= 1 MiB, breaking plugin install and large avatar uploads when waf_enabled is on", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2240", - "_origin": "ast", - "id": "superpowers_findings_oc_0103_medium_waf_inline_engine_rejects_every_request_body_1_mib_breaking_plugin_install_and_large_avatar_uploads_when_waf_enabled_is_on", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0103 \u2014 medium \u2014 waf inline engine rejects every request body >= 1 mib, breaking plugin install and large avatar uploads when waf_enabled is on" - }, - { - "label": "OC-0104 \u2014 medium \u2014 Hot plugin re-install leaves plugins.enabled = 1 while the runtime instance is deactivated, so the plugin silently stops working and the admin panel still shows it enabled", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2273", - "_origin": "ast", - "id": "superpowers_findings_oc_0104_medium_hot_plugin_re_install_leaves_plugins_enabled_1_while_the_runtime_instance_is_deactivated_so_the_plugin_silently_stops_working_and_the_admin_panel_still_shows_it_enabled", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0104 \u2014 medium \u2014 hot plugin re-install leaves plugins.enabled = 1 while the runtime instance is deactivated, so the plugin silently stops working and the admin panel still shows it enabled" - }, - { - "label": "OC-0105 \u2014 medium \u2014 secret_store::delete reports success while the fallback credential survives on disk and resurrects on next launch", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2306", - "_origin": "ast", - "id": "superpowers_findings_oc_0105_medium_secret_store_delete_reports_success_while_the_fallback_credential_survives_on_disk_and_resurrects_on_next_launch", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0105 \u2014 medium \u2014 secret_store::delete reports success while the fallback credential survives on disk and resurrects on next launch" - }, - { - "label": "OC-0106 \u2014 medium \u2014 Every DM message re-emits dm_channel_open and bumps the global visibility watermark, so ordinary DM traffic forces every other client's next reconnect onto the full-resync tier", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2333", - "_origin": "ast", - "id": "superpowers_findings_oc_0106_medium_every_dm_message_re_emits_dm_channel_open_and_bumps_the_global_visibility_watermark_so_ordinary_dm_traffic_forces_every_other_client_s_next_reconnect_onto_the_full_resync_tier", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0106 \u2014 medium \u2014 every dm message re-emits dm_channel_open and bumps the global visibility watermark, so ordinary dm traffic forces every other client's next reconnect onto the full-resync tier" - }, - { - "label": "OC-0107 \u2014 medium \u2014 Session termination before MainPage mounts never tears down the WS client, so a banned/revoked token reconnects forever", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2353", - "_origin": "ast", - "id": "superpowers_findings_oc_0107_medium_session_termination_before_mainpage_mounts_never_tears_down_the_ws_client_so_a_banned_revoked_token_reconnects_forever", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0107 \u2014 medium \u2014 session termination before mainpage mounts never tears down the ws client, so a banned/revoked token reconnects forever" - }, - { - "label": "OC-0108 \u2014 medium \u2014 A username/nickname/avatar change never repaints the open message list \u2014 updateMemberProfile is the one members.store mutator that does not bump roleRevision, and MessageList subscribes to nothing else", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2392", - "_origin": "ast", - "id": "superpowers_findings_oc_0108_medium_a_username_nickname_avatar_change_never_repaints_the_open_message_list_updatememberprofile_is_the_one_members_store_mutator_that_does_not_bump_rolerevision_and_messagelist_subscribes_to_nothing_else", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0108 \u2014 medium \u2014 a username/nickname/avatar change never repaints the open message list \u2014 updatememberprofile is the one members.store mutator that does not bump rolerevision, and messagelist subscribes to nothing else" - }, - { - "label": "OC-0109 \u2014 medium \u2014 GIF proxy's log redaction misses the percent-encoded API key, so an upstream failure writes the Klipy credential to stdout and the admin log stream", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2422", - "_origin": "ast", - "id": "superpowers_findings_oc_0109_medium_gif_proxy_s_log_redaction_misses_the_percent_encoded_api_key_so_an_upstream_failure_writes_the_klipy_credential_to_stdout_and_the_admin_log_stream", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0109 \u2014 medium \u2014 gif proxy's log redaction misses the percent-encoded api key, so an upstream failure writes the klipy credential to stdout and the admin log stream" - }, - { - "label": "OC-0110 \u2014 medium \u2014 Every error attribute is blanked to `{}` in the admin live log stream \u2014 `err` never reaches the log viewer", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2441", - "_origin": "ast", - "id": "superpowers_findings_oc_0110_medium_every_error_attribute_is_blanked_to_in_the_admin_live_log_stream_err_never_reaches_the_log_viewer", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0110 \u2014 medium \u2014 every error attribute is blanked to `{}` in the admin live log stream \u2014 `err` never reaches the log viewer" - }, - { - "label": "OC-0111 \u2014 medium \u2014 Auto-idle's return-to-online presence_update is always swallowed by the 1-per-10s presence limiter, so every user shows as Idle to everyone else after returning to the keyboard", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2471", - "_origin": "ast", - "id": "superpowers_findings_oc_0111_medium_auto_idle_s_return_to_online_presence_update_is_always_swallowed_by_the_1_per_10s_presence_limiter_so_every_user_shows_as_idle_to_everyone_else_after_returning_to_the_keyboard", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0111 \u2014 medium \u2014 auto-idle's return-to-online presence_update is always swallowed by the 1-per-10s presence limiter, so every user shows as idle to everyone else after returning to the keyboard" - }, - { - "label": "OC-0112 \u2014 medium \u2014 handleServeFile's admin bypass covers the DM branch, so an ADMINISTRATOR can download attachments from private DMs they are not a participant in", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2494", - "_origin": "ast", - "id": "superpowers_findings_oc_0112_medium_handleservefile_s_admin_bypass_covers_the_dm_branch_so_an_administrator_can_download_attachments_from_private_dms_they_are_not_a_participant_in", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0112 \u2014 medium \u2014 handleservefile's admin bypass covers the dm branch, so an administrator can download attachments from private dms they are not a participant in" - }, - { - "label": "OC-0113 \u2014 medium \u2014 Selecting \"Default\" microphone never changes the capture device \u2014 the mute/unmute cycle re-acquires nothing", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2518", - "_origin": "ast", - "id": "superpowers_findings_oc_0113_medium_selecting_default_microphone_never_changes_the_capture_device_the_mute_unmute_cycle_re_acquires_nothing", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0113 \u2014 medium \u2014 selecting \"default\" microphone never changes the capture device \u2014 the mute/unmute cycle re-acquires nothing" - }, - { - "label": "OC-0114 \u2014 medium \u2014 In a group DM, one participant's decline silences every other participant's incoming ring \u2014 and never reaches the actual caller", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2552", - "_origin": "ast", - "id": "superpowers_findings_oc_0114_medium_in_a_group_dm_one_participant_s_decline_silences_every_other_participant_s_incoming_ring_and_never_reaches_the_actual_caller", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0114 \u2014 medium \u2014 in a group dm, one participant's decline silences every other participant's incoming ring \u2014 and never reaches the actual caller" - }, - { - "label": "OC-0115 \u2014 medium \u2014 Link-preview fetch buffers the whole response body with no timeout and no size cap \u2014 the documented 50 KB bound is applied after the bytes are already in memory", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2577", - "_origin": "ast", - "id": "superpowers_findings_oc_0115_medium_link_preview_fetch_buffers_the_whole_response_body_with_no_timeout_and_no_size_cap_the_documented_50_kb_bound_is_applied_after_the_bytes_are_already_in_memory", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0115 \u2014 medium \u2014 link-preview fetch buffers the whole response body with no timeout and no size cap \u2014 the documented 50 kb bound is applied after the bytes are already in memory" - }, - { - "label": "OC-0116 \u2014 medium \u2014 A failed TOTP verify tears down the TOTP overlay, so the code cannot be re-entered", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2597", - "_origin": "ast", - "id": "superpowers_findings_oc_0116_medium_a_failed_totp_verify_tears_down_the_totp_overlay_so_the_code_cannot_be_re_entered", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0116 \u2014 medium \u2014 a failed totp verify tears down the totp overlay, so the code cannot be re-entered" - }, - { - "label": "OC-0117 \u2014 medium \u2014 Channel create/edit/delete modals lock up permanently on an API failure \u2014 the caller swallows the rejection the modal needs to re-enable its button", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2624", - "_origin": "ast", - "id": "superpowers_findings_oc_0117_medium_channel_create_edit_delete_modals_lock_up_permanently_on_an_api_failure_the_caller_swallows_the_rejection_the_modal_needs_to_re_enable_its_button", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0117 \u2014 medium \u2014 channel create/edit/delete modals lock up permanently on an api failure \u2014 the caller swallows the rejection the modal needs to re-enable its button" - }, - { - "label": "OC-0118 \u2014 low \u2014 Identity-keyring account namespace collides between a legacy host-only entry and a scoped host+userId entry, letting one server's voice identity private key be adopted on another server", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2654", - "_origin": "ast", - "id": "superpowers_findings_oc_0118_low_identity_keyring_account_namespace_collides_between_a_legacy_host_only_entry_and_a_scoped_host_userid_entry_letting_one_server_s_voice_identity_private_key_be_adopted_on_another_server", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0118 \u2014 low \u2014 identity-keyring account namespace collides between a legacy host-only entry and a scoped host+userid entry, letting one server's voice identity private key be adopted on another server" - }, - { - "label": "OC-0119 \u2014 low \u2014 Group-DM creation only block-checks the creator against each recipient, so a third party can force two users who blocked each other into a shared room", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2680", - "_origin": "ast", - "id": "superpowers_findings_oc_0119_low_group_dm_creation_only_block_checks_the_creator_against_each_recipient_so_a_third_party_can_force_two_users_who_blocked_each_other_into_a_shared_room", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0119 \u2014 low \u2014 group-dm creation only block-checks the creator against each recipient, so a third party can force two users who blocked each other into a shared room" - }, - { - "label": "OC-0120 \u2014 low \u2014 Reaction-users endpoint has no soft-deleted-message guard, unlike its sibling in the same file", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2705", - "_origin": "ast", - "id": "superpowers_findings_oc_0120_low_reaction_users_endpoint_has_no_soft_deleted_message_guard_unlike_its_sibling_in_the_same_file", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0120 \u2014 low \u2014 reaction-users endpoint has no soft-deleted-message guard, unlike its sibling in the same file" - }, - { - "label": "OC-0121 \u2014 low \u2014 Message jumps and permalinks into a DM fail with \"That channel isn't available\" until the DM has been opened once this session", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2735", - "_origin": "ast", - "id": "superpowers_findings_oc_0121_low_message_jumps_and_permalinks_into_a_dm_fail_with_that_channel_isn_t_available_until_the_dm_has_been_opened_once_this_session", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0121 \u2014 low \u2014 message jumps and permalinks into a dm fail with \"that channel isn't available\" until the dm has been opened once this session" - }, - { - "label": "OC-0122 \u2014 low \u2014 dm_channel_close fallback activates a DM without clearing its dmStore unread badge, leaving a permanent phantom badge on the conversation being read", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2770", - "_origin": "ast", - "id": "superpowers_findings_oc_0122_low_dm_channel_close_fallback_activates_a_dm_without_clearing_its_dmstore_unread_badge_leaving_a_permanent_phantom_badge_on_the_conversation_being_read", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0122 \u2014 low \u2014 dm_channel_close fallback activates a dm without clearing its dmstore unread badge, leaving a permanent phantom badge on the conversation being read" - }, - { - "label": "OC-0123 \u2014 low \u2014 markAllRead's paced tail marks messages that arrived after the click as read, destroying a genuinely-new unread badge", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2797", - "_origin": "ast", - "id": "superpowers_findings_oc_0123_low_markallread_s_paced_tail_marks_messages_that_arrived_after_the_click_as_read_destroying_a_genuinely_new_unread_badge", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0123 \u2014 low \u2014 markallread's paced tail marks messages that arrived after the click as read, destroying a genuinely-new unread badge" - }, - { - "label": "OC-0124 \u2014 low \u2014 hidePreview overwrites the pending animation timer without clearing it, orphaning timers that later tear down a freshly reopened preview and strand its media-track listeners", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2829", - "_origin": "ast", - "id": "superpowers_findings_oc_0124_low_hidepreview_overwrites_the_pending_animation_timer_without_clearing_it_orphaning_timers_that_later_tear_down_a_freshly_reopened_preview_and_strand_its_media_track_listeners", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0124 \u2014 low \u2014 hidepreview overwrites the pending animation timer without clearing it, orphaning timers that later tear down a freshly reopened preview and strand its media-track listeners" - }, - { - "label": "OC-0125 \u2014 low \u2014 Voice & Audio settings tab registers a new permanent abort listener on the overlay-lifetime AbortSignal on every build, pinning every previously built tab", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2864", - "_origin": "ast", - "id": "superpowers_findings_oc_0125_low_voice_audio_settings_tab_registers_a_new_permanent_abort_listener_on_the_overlay_lifetime_abortsignal_on_every_build_pinning_every_previously_built_tab", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0125 \u2014 low \u2014 voice & audio settings tab registers a new permanent abort listener on the overlay-lifetime abortsignal on every build, pinning every previously built tab" - }, - { - "label": "OC-0126 \u2014 low \u2014 Plugin enable leaves plugins.enabled = 1 in the DB when the in-memory instance is missing \u2014 no rollback on that early return", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2882", - "_origin": "ast", - "id": "superpowers_findings_oc_0126_low_plugin_enable_leaves_plugins_enabled_1_in_the_db_when_the_in_memory_instance_is_missing_no_rollback_on_that_early_return", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0126 \u2014 low \u2014 plugin enable leaves plugins.enabled = 1 in the db when the in-memory instance is missing \u2014 no rollback on that early return" - }, - { - "label": "OC-0127 \u2014 low \u2014 Plugin uninstall returns success when the on-disk directory cannot be removed, so the plugin is resurrected on the next startup", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2904", - "_origin": "ast", - "id": "superpowers_findings_oc_0127_low_plugin_uninstall_returns_success_when_the_on_disk_directory_cannot_be_removed_so_the_plugin_is_resurrected_on_the_next_startup", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0127 \u2014 low \u2014 plugin uninstall returns success when the on-disk directory cannot be removed, so the plugin is resurrected on the next startup" - }, - { - "label": "OC-0128 \u2014 low \u2014 An attachment-metadata read failure broadcasts the message with no attachments \u2014 an attachment-only send renders as a blank bubble for everyone", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2925", - "_origin": "ast", - "id": "superpowers_findings_oc_0128_low_an_attachment_metadata_read_failure_broadcasts_the_message_with_no_attachments_an_attachment_only_send_renders_as_a_blank_bubble_for_everyone", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0128 \u2014 low \u2014 an attachment-metadata read failure broadcasts the message with no attachments \u2014 an attachment-only send renders as a blank bubble for everyone" - }, - { - "label": "OC-0129 \u2014 low \u2014 \"Yesterday\" boundary is computed by subtracting 24h from local midnight, so DST days mislabel message timestamps by a full day", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2946", - "_origin": "ast", - "id": "superpowers_findings_oc_0129_low_yesterday_boundary_is_computed_by_subtracting_24h_from_local_midnight_so_dst_days_mislabel_message_timestamps_by_a_full_day", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0129 \u2014 low \u2014 \"yesterday\" boundary is computed by subtracting 24h from local midnight, so dst days mislabel message timestamps by a full day" - }, - { - "label": "OC-0130 \u2014 low \u2014 GIF freeze compares a raw URL string against the DOM-normalized img.src, so any URL the parser rewrites is never actually frozen while the UI claims it is", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2966", - "_origin": "ast", - "id": "superpowers_findings_oc_0130_low_gif_freeze_compares_a_raw_url_string_against_the_dom_normalized_img_src_so_any_url_the_parser_rewrites_is_never_actually_frozen_while_the_ui_claims_it_is", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0130 \u2014 low \u2014 gif freeze compares a raw url string against the dom-normalized img.src, so any url the parser rewrites is never actually frozen while the ui claims it is" - }, - { - "label": "OC-0131 \u2014 low \u2014 A username containing an uppercase non-ASCII letter can never be @mentioned", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L2995", - "_origin": "ast", - "id": "superpowers_findings_oc_0131_low_a_username_containing_an_uppercase_non_ascii_letter_can_never_be_mentioned", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0131 \u2014 low \u2014 a username containing an uppercase non-ascii letter can never be @mentioned" - }, - { - "label": "OC-0132 \u2014 low \u2014 Connection-quality degradation is never reported: the 3 s debounce timer is cleared and rescheduled by every 2 s poll, so onQualityChanged only fires when stats collection fails", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L3012", - "_origin": "ast", - "id": "superpowers_findings_oc_0132_low_connection_quality_degradation_is_never_reported_the_3_s_debounce_timer_is_cleared_and_rescheduled_by_every_2_s_poll_so_onqualitychanged_only_fires_when_stats_collection_fails", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0132 \u2014 low \u2014 connection-quality degradation is never reported: the 3 s debounce timer is cleared and rescheduled by every 2 s poll, so onqualitychanged only fires when stats collection fails" - }, - { - "label": "OC-0133 \u2014 low \u2014 UninstallPlugin deletes a directory derived from the manifest name, not the plugin's real on-disk directory, so any plugin whose folder name differs is resurrected on next start", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L3082", - "_origin": "ast", - "id": "superpowers_findings_oc_0133_low_uninstallplugin_deletes_a_directory_derived_from_the_manifest_name_not_the_plugin_s_real_on_disk_directory_so_any_plugin_whose_folder_name_differs_is_resurrected_on_next_start", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0133 \u2014 low \u2014 uninstallplugin deletes a directory derived from the manifest name, not the plugin's real on-disk directory, so any plugin whose folder name differs is resurrected on next start" - }, - { - "label": "OC-0134 \u2014 low \u2014 DM sidebar avatar image load destroys the presence status dot", - "file_type": "document", - "source_file": ".superpowers/FINDINGS.md", - "source_location": "L3100", - "_origin": "ast", - "id": "superpowers_findings_oc_0134_low_dm_sidebar_avatar_image_load_destroys_the_presence_status_dot", - "community": 14, - "community_name": "Fixed", - "norm_label": "oc-0134 \u2014 low \u2014 dm sidebar avatar image load destroys the presence status dot" - }, - { - "label": "OC-0135 \u2014 low \u2014 Re-subscribed screenshare-audio tracks leak detached